pythonでファイルの存在を確認する - Qiita
import ospath = "./sample"os.path.exists(path)これでsampleと言う名前のファイル、またはディレクトリの存在を確認できる。ちなみに、ディレクト…