“Изменение текущего рабочего каталога в Python” Ответ

Измените текущий рабочий каталог в Python

import os
cdir = os.getcwd() # it will return current working directory
print("Previous_dir",cdir)
# Previous_dir C:\Users\..\Desktop\python
os.chdir('C:/Users/../Desktop/desire_folder') #chdir used for change direcotry
print("Current_dir",cdir)
# Current_dir C:\Users\..\Desktop\python\teamspirit
visualscrapper

Setwd Python

os.chdir("/home/varun/temp")
Lazy Lion

Изменение текущего рабочего каталога в Python

# Import the os module
import os

# Print the current working directory
print("Current working directory: {0}".format(os.getcwd()))

# Change the current working directory
os.chdir('/Projects')

# Print the current working directory
print("New Current working directory: {0}".format(os.getcwd()))
Gorgeous Gazelle

Как использовать путь для изменения рабочего каталога в Python

pip install path
from path import Path

# set working directory
Path("/toWhereYouWantItToBe").cd()
Wrong Wren

Измените мой рабочий каталог Python

# Import the os module
import os

# Print the current working directory
print("Current working directory: {0}".format(os.getcwd()))

# Change the current working directory
os.chdir('/tmp')

# Print the current working directory
print("Current working directory: {0}".format(os.getcwd()))
Dark Dotterel

Ответы похожие на “Изменение текущего рабочего каталога в Python”

Вопросы похожие на “Изменение текущего рабочего каталога в Python”

Больше похожих ответов на “Изменение текущего рабочего каталога в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования