“Zmiana obecnego katalogu roboczego w Pythonie” Kod odpowiedzi

Zmień obecny katalog roboczy w Pythonie

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

Zmiana obecnego katalogu roboczego w Pythonie

# 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

Jak używać ścieżki do zmiany katalogu roboczego w Python

pip install path
from path import Path

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

Zmień mój katalog roboczy Pythona

# 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

Odpowiedzi podobne do “Zmiana obecnego katalogu roboczego w Pythonie”

Pytania podobne do “Zmiana obecnego katalogu roboczego w Pythonie”

Więcej pokrewnych odpowiedzi na “Zmiana obecnego katalogu roboczego w Pythonie” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu