programing

현재 작업 디렉토리를 설정하려면 어떻게 해야 합니까?

javaba 2023. 1. 9. 21:23
반응형

현재 작업 디렉토리를 설정하려면 어떻게 해야 합니까?

Python에서 현재 작업 디렉토리를 설정하는 방법은 무엇입니까?

시험해 보다

os.chdir(path)

현재 작업 디렉토리를 경로로 변경합니다.가용성:UNIX, Windows

아마 이것이 당신이 찾고 있는 것입니다.

import os
os.chdir(default_path)
import os
print os.getcwd()  # Prints the current working directory

작업 디렉토리를 설정하려면:

os.chdir('c:\\Users\\uname\\desktop\\python')  # Provide the new path here

Mac에서도 동작합니다.

import os
path="/Users/HOME/Desktop/Addl Work/TimeSeries-Done"
os.chdir(path)

작업 디렉토리를 확인하려면

os.getcwd()

판다 패키지를 이용하는 사람들

import os
import pandas as pd

tar = os.chdir('<dir path only>') # do not mention file name here
print os.getcwd()# to print the path name in CLI

다음 구문은 python CLI에서 파일을 가져오는 데 사용됩니다.

dataset(*just a variable) = pd.read_csv('new.csv')

언급URL : https://stackoverflow.com/questions/1810743/how-to-set-the-current-working-directory

반응형