pythonでディレクトリが存在しているかどうかをチェックするにはos.path.exists()
を使う、
ディレクトリを作成するにはos.makedirs()
を使う
test.py
import os
checkdir = './testdir'
if os.path.exists(checkdir) == False:
print("{} not exists".format(checkdir))
print("{} create path".format(checkdir))
os.makedirs(checkdir)
else:
print("{} exists".format(checkdir))
実行する
$ python test.py
./testdir not exists
./testdir create path
$ python test.py
./testdir exists
$ ls testdir/
参考