Answers for "python dfind name of file 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
0

python get file name without dir

>>> os.path.basename('/path_name/1.log,/path_name/2.log')
'2.log'
Posted by: Guest on October-18-2021

Code answers related to "python dfind name of file in directory"

Python Answers by Framework

Browse Popular Code Answers by Language