Answers for "how to make a python script find the path to a file"

1

get python script path

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

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

python make file path os

import os

FilePath = os.path.join("Folder","File.txt")
Posted by: Guest on August-13-2021

Code answers related to "how to make a python script find the path to a file"

Python Answers by Framework

Browse Popular Code Answers by Language