“Alterando o diretório de trabalho atual em Python” Respostas de código

Mude o diretório de trabalho atual em 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

Alterando o diretório de trabalho atual em 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

Como usar o caminho para mudar o diretório de trabalho no Python

pip install path
from path import Path

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

Mude meu diretório de trabalho em 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

Respostas semelhantes a “Alterando o diretório de trabalho atual em Python”

Perguntas semelhantes a “Alterando o diretório de trabalho atual em Python”

Mais respostas relacionadas para “Alterando o diretório de trabalho atual em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código