概要
Pythonで「ファイルやディレクトリの存在を確認する」の動作を確認してみました。
以下のページを参考にしました。
実装
以下のファイルを作成しました。
sample.py
import os
import pathlib
path1 = './test/address.txt'
if os.path.exists(path1) :
print(path1 + 'は存在します')
else :
print(path1 + 'は存在しません')
path2 = './test/user.txt'
if os.path.exists(path2) :
print(path2 + 'は存在します')
else :
print(path2 + 'は存在しません')
path3 = './test/img'
if os.path.exists(path3) :
print(path3 + 'は存在します')
else :
print(path3 + 'は存在しません')
以下のコマンドを実行しました。
$ mkdir test
$ touch test/address.txt
$ touch test/name.txt
$ mkdir test/doc
$ mkdir test/img
$ python3 sample.py
./test/address.txtは存在します
./test/user.txtは存在しません
./test/imgは存在します
まとめ
何かの役に立てばと。