Python Finden Sie eine spezielle Datei im Verzeichnis
text_files = glob.glob(path + "/**/*.txt")
Awful Alligator
text_files = glob.glob(path + "/**/*.txt")
>>> f = open('/tmp/generic.png','r')
>>> f.name
'/tmp/generic.png'
>>> import os
>>> os.path.basename(f.name)
'generic.png'
filesName = list(map(os.path.basename, glob.glob("..\yourPath\*txt")))
print(filesName)