Answers for "pathlib get list of files"

0

pathlib get list of files

for path in pathlib.Path(".").iterdir():
    if path.is_file():
        print(path)
Posted by: Guest on February-22-2022

Code answers related to "pathlib get list of files"

Python Answers by Framework

Browse Popular Code Answers by Language