Answers for "python get running file path"

7

python get full path

import os
# you have to be in the same directory as the file
file = 'myfile.txt'
# or also
file = 'directory/to/myfile.txt'

path = os.path.abspath(file)
Posted by: Guest on May-16-2020
1

get python script path

import os
def GetScriptPath():
    return os.path.realpath(__file__);

print(GetScriptPath());
Posted by: Guest on June-11-2021
-3

get pyhton file path python

import os

os.path.realpath(__file__)
Posted by: Guest on October-13-2020
1

get python script path

current_path: Path = Path(__file__).parent.resolve()
Posted by: Guest on October-28-2021

Code answers related to "python get running file path"

Python Answers by Framework

Browse Popular Code Answers by Language