2024-03-28

Pythonでパスがフォルダなのか確認するよ

Pythonでパスがフォルダなのか確認するよ
※指定したフォルダがないと確認できないから注意してね!

パスがフォルダなのか確認するよ

# OS関連の機能のモジュールを読み込むよ
import os
# ファイルを指定するよ
targetPath = r"D:\Pythonで作成したフォルダ\あああ.csv"
# パスがフォルダなのか確認するよ
if os.path.isdir(targetPath):
    print(f"『 {targetPath} 』" + "はフォルダ")
else:
    print(f"『 {targetPath} 』" + "はフォルダではない")

# フォルダを指定するよ
targetPath = r"D:\Pythonで作成したフォルダ"
# パスがフォルダなのか確認するよ
if os.path.isdir(targetPath):
    print(f"『 {targetPath} 』" + "はフォルダ")
else:
    print(f"『 {targetPath} 』" + "はフォルダではない")

実行結果

『 D:\Pythonで作成したフォルダ\あああ.csv 』はフォルダではない
『 D:\Pythonで作成したフォルダ 』はフォルダ

0 件のコメント: