Answers for "find a file name in a folder in python"

12

get files in directory python

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

python find file name

filesName = list(map(os.path.basename, glob.glob("..\yourPath\*txt")))
print(filesName)
Posted by: Guest on January-31-2021

Code answers related to "find a file name in a folder in python"

Python Answers by Framework

Browse Popular Code Answers by Language