Answers for "python get the file name from path"

33

python get filename from path

import os
print(os.path.basename(your_path))
Posted by: Guest on February-28-2020
2

python file from path

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on November-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 "python get the file name from path"

Python Answers by Framework

Browse Popular Code Answers by Language