2021年1月1日金曜日

カレントディレクトリ

 Pythonのカレントディレクトリに関するメモです.

Pythonでカレントディレクトリを確認するにはREPLで以下のようにします.カレントディレクトリは os.getcwd() 関数で文字列として取得でき,os.chdir() 関数で変更できます.なお,cwd は Current Working Directory の頭文字を取ったものです.また,os.getcwd() 関数はディレクトリ変更の関数です.

>>> import os

>>> os.getcwd()

'/Users/hide'

>>> os.chdir('/Users/User name/Desktop')

>>> os.getcwd()

'/Users/User name/Desktop'

>>> 


存在しないディレクトリに変更しようとすると,以下のようにエラーが返ってきます.

>>> os.chdir('/Users/User name/Desktop/xxx')

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

FileNotFoundError: [Errno 2] No such file or directory: '/Users/User name/Desktop/xxx'

>>> 

0 件のコメント :

コメントを投稿