Answers for "python set working directory to script location"

15

working directory python

import os
cwd = os.getcwd()
Posted by: Guest on March-09-2020
1

python change working directory to file directory

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Posted by: Guest on March-23-2021

Code answers related to "python set working directory to script location"

Python Answers by Framework

Browse Popular Code Answers by Language