“Changer le répertoire de travail actuel dans Python” Réponses codées

Modifier le répertoire de travail actuel dans 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

Changer le répertoire de travail actuel dans 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

Comment utiliser le chemin du chemin pour changer le répertoire de travail dans Python

pip install path
from path import Path

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

Changez mon répertoire de travail 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

Réponses similaires à “Changer le répertoire de travail actuel dans Python”

Questions similaires à “Changer le répertoire de travail actuel dans Python”

Plus de réponses similaires à “Changer le répertoire de travail actuel dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code