目次
Pythonでファイルの存在チェック
- Pythonの場合、
os.path.exists()
でファイルの存在チェックを行えます。
構文
os.path.exists(<ファイルパス>)
<ファイルパス>
はフルパス、または相対パスで指定します。
例
import os print(os.path.exists("aaa.txt"))
出力結果(ファイルがある場合)
True
出力結果(ファイルがない場合)
False
os.path.exists()
でファイルの存在チェックを行えます。os.path.exists(<ファイルパス>)
<ファイルパス>
はフルパス、または相対パスで指定します。import os print(os.path.exists("aaa.txt"))
True
False