Answers for "check if path exists pathlib"

1

pathlib path exists

import pathlib
path = pathlib.Path('my/path/to/file/or/dir')
assert path.exists()
Posted by: Guest on August-27-2021

Code answers related to "check if path exists pathlib"

Python Answers by Framework

Browse Popular Code Answers by Language