Answers for "how to set current working directory in python os module"

1

python current working directory

# If by "current working directory" you mean 
# the directory in which is saved the script in execution, then:
import os
cwd = os.path.dirname(os.path.realpath(__file__))
print(cwd)
Posted by: Guest on August-24-2021
0

path of current working directory with os module python

import os
cwd = os.getcwd()

my_file='image.png'
file_path = os.path.join(cwd, my_file)
file_path
Posted by: Guest on July-04-2021

Code answers related to "how to set current working directory in python os module"

Python Answers by Framework

Browse Popular Code Answers by Language