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

좋은 웹페이지 즐겨찾기