Answers for "get python file name"

1

get self file name in python

import os

os.path.basename(__file__)
Posted by: Guest on May-26-2020
1

get name of a file in python

>>> f = open('/tmp/generic.png','r')
>>> f.name
'/tmp/generic.png'
>>> import os
>>> os.path.basename(f.name)
'generic.png'
Posted by: Guest on May-24-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
0

get the name of a current script in python

Use __file__. If you want to omit the directory part (which might be present), you can use os.path.basename(__file__)
Posted by: Guest on February-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language