Answers for "geting the filename in python"

6

how to get just the filename in python

import os
>>> base=os.path.basename('/root/dir/sub/file.ext')
>>> base
'file.ext'
>>> os.path.splitext(base)
('file', '.ext')
>>> os.path.splitext(base)[0]
'file'
Posted by: Guest on May-19-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 "geting the filename in python"

Python Answers by Framework

Browse Popular Code Answers by Language