Answers for "python get current file name"

11

python get current file location

import os
os.path.dirname(os.path.abspath(__file__))
Posted by: Guest on May-11-2020
2

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
Posted by: Guest on June-05-2020
3

get current file name python

import os
os.path.basename(__file__)
Posted by: Guest on July-18-2021
2

python name of current file

from pathlib import Path
print(Path(__file__).stem) #myfile
print(Path(__file__).name) #myfile.py
Posted by: Guest on April-23-2021
1

get self file name in python

import os

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

Code answers related to "python get current file name"

Python Answers by Framework

Browse Popular Code Answers by Language