Answers for "get the file name in path python"

38

python get filename from path

import os
print(os.path.basename(your_path))
Posted by: Guest on February-28-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 "get the file name in path python"

Python Answers by Framework

Browse Popular Code Answers by Language