Answers for "set directory python"

24

get wd in python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Posted by: Guest on January-26-2020
5

setwd python

os.chdir("/home/varun/temp")
Posted by: Guest on April-13-2020
3

change directory in python script

os.chdir(os.path.dirname(__file__))
Posted by: Guest on October-14-2020
1

change directory in python os

import os

path = "C:\Users\Your\Directory"

os.chdir(path)
Posted by: Guest on March-16-2021
2

change working directory python

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

how to use path to change working directory in python

pip install path
from path import Path

# set working directory
Path("/toWhereYouWantItToBe").cd()
Posted by: Guest on March-09-2020

Code answers related to "set directory python"

Python Answers by Framework

Browse Popular Code Answers by Language