「Python」os.path.isfileとos.path.isdirでファイルまたはディレクトリの存在を確認する方法

2020年10月8日

説明
1.os.path.isfile(path)
path が 存在する 一般ファイルなら True を返します。
2.os.path.isdir(path)
path が 存在する ディレクトリなら True を返します。

サンプルコード
import os

filepath = './tmp/ark/test.csv’
folderpath = './tmp/ark’
folderpath2 = './tmp/ark/’

# ファイルの存在確認
print(os.path.isfile(filepath))

# フォルダの存在確認
print(os.path.isdir(folderpath))
print(os.path.isdir(folderpath2))

# ファイルまたはフォルダの存在確認
print(os.path.exists(filepath))
print(os.path.exists(folderpath))

Python

Posted by arkgame