Answers for "python find a file in a 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

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

Python Answers by Framework

Browse Popular Code Answers by Language