Answers for "python change working directory to current file"

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
2

change working directory python

import os
os.chdir(new_working_directory)
Posted by: Guest on August-05-2020

Code answers related to "python change working directory to current file"

Python Answers by Framework

Browse Popular Code Answers by Language