Answers for "python find a file in directory"

12

get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")
Posted by: Guest on June-12-2020
2

python find specific file in directory

text_files = glob.glob(path + "/**/*.txt")
Posted by: Guest on October-08-2020
1

python get files in directory

from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
  print(txt_path)
Posted by: Guest on November-30-2020

Code answers related to "python find a file in directory"

Python Answers by Framework

Browse Popular Code Answers by Language