No.045 [Python] 작업 디렉터리의 취득 및 변경
1304 단어 Pythonprogramming
이번에는 작업 목록의 취득과 변경에 대해 쓰겠습니다.
I'll write about acquiring and changing current directories
■ 작업 디렉터리 획득 및 확인
To acquire and check current directories
os.getcwd():作業ディレクトリの絶対パスを文字列として返す
>>> import os
>>>
>>> path = os.getcwd()
>>>
>>> print(path)
/Users/hauts5124/Documents
>>>
>>> print(type(path))
<class 'str'>
>>>
>>> # getcwd:get current working directoryの略
■ 작업 디렉터리 수정:os.chdir()
Change current directories
os.chdir():作業ディレクトリを変更可能
引数に移動先パスを指定。絶対パス、相対パス双方可能
上の階層への移動は " ../ "
>>> os.chdir("../")
>>>
>>> print(os.getcwd())
/Users/hauts5124
>>>
>>> # chdir: chenge directoryの略
수시로 업데이트되므로 정기적으로 구독해주세요.I'll update my article at all times.
So, please subscribe my articles from now on.
본 보도에 관하여 만약 무슨 요구가 있으면 마음대로 메시지를 남겨 주십시오!
If you have some requests, please leave some messages! by You-Tarin
Reference
이 문제에 관하여(No.045 [Python] 작업 디렉터리의 취득 및 변경), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/You-Tarin/items/2ec1ed374477017b3e9b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)