Python pathlibモジュールを使ってフォルダとファイルの存在チェックを行う

環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)

書式
変数名1 =pathlib.Path('ファイル名/フォルダ名’)
変数名1.exists()
pathlibというモジュールを使用して、フォルダとファイルの存在チェックを行います。

使用例

import pathlib

p =pathlib.Path('55.txt')
print(p.exists())

t = pathlib.Path('11.csv')
print(t.exists())

p= pathlib.Path('venv')
print(p.exists())

m=pathlib.Path('11')
print(m.exists())

実行結果
True
True
True
False

Python

Posted by arkgame