python get name of current file code example
Example 1: python get script name
# Option 1: Works for Python 3.4 +
from pathlib import Path
Path(__file__).name # ScriptName.py
Path(__file__).stem # ScriptName
# Option 2: use `os` library
import os
os.path.basename(__file__) # ScriptName.py
os.path.splitext(os.path.basename(__file__))[0] # ScriptName
Example 2: python name of current file
from pathlib import Path
print(Path(__file__).stem) #myfile
print(Path(__file__).name) #myfile.py
Example 3: 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'
Example 4: python find file name
filesName = list(map(os.path.basename, glob.glob("..\yourPath\*txt")))
print(filesName)
Example 5: 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__)