반응형
현재 작업 디렉토리를 설정하려면 어떻게 해야 합니까?
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
반응형
'programing' 카테고리의 다른 글
Chrome 디버거에서 편집 (0) | 2023.01.09 |
---|---|
MariaDB - 10.4.14 Windows 2019의 미사용 데이터 암호화 (0) | 2023.01.09 |
컴파일을 시작할 수 없습니다.모듈의 출력 경로가 지정되지 않았습니다.." (0) | 2023.01.09 |
python 설치 시 $PATH에서 사용할 수 있는 C 컴파일러를 찾을 수 없습니다. (0) | 2023.01.09 |
Nginx에서 PHP를 실행할 때 파일을 찾을 수 없음 (0) | 2023.01.09 |