“Ändern des aktuellen Arbeitsverzeichnisses in Python” Code-Antworten

Ändern Sie das aktuelle Arbeitsverzeichnis in 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

Ändern des aktuellen Arbeitsverzeichnisses in 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

So verwenden Sie Pfad, um das Arbeitsverzeichnis in Python zu ändern

pip install path
from path import Path

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

Ändern Sie mein Python -Arbeitsverzeichnis

# 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

Ähnliche Antworten wie “Ändern des aktuellen Arbeitsverzeichnisses in Python”

Fragen ähnlich wie “Ändern des aktuellen Arbeitsverzeichnisses in Python”

Weitere verwandte Antworten zu “Ändern des aktuellen Arbeitsverzeichnisses in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen