Answers for "pythonn get string name of files in directory"

2

python how to get the folder name of a file

# Basic syntax:
import os
os.path.dirname('/path/to/your/favorite/file.txt')
--> '/path/to/your/favorite/'
Posted by: Guest on October-04-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 "pythonn get string name of files in directory"

Python Answers by Framework

Browse Popular Code Answers by Language