Pythonのchdir()関数の使用方法

chdir 関数はカレントディレクトリを変更するために使用します。使用方法:

import os
# 获取当前工作目录
current_dir = os.getcwd()
print("当前工作目录:", current_dir)
# 改变当前工作目录
new_dir = "path/to/new_directory"
os.chdir(new_dir)
# 再次获取当前工作目录
current_dir = os.getcwd()
print("新的工作目录:", current_dir)

上のコードでは、最初に os.getcwd() を利用して現在作業中のディレクトリを取得し、それを出力します。次に、os.chdir() 関数を使用して現在作業中のディレクトリを指定されたディレクトリ new_dir に変更します。最後に再度 os.getcwd() を利用して新しい作業ディレクトリを取得し、それを出力します。

ご注意ください、new_dirは有効なディレクトリパスでなければなりません。パスが存在しない場合、FileNotFoundError例外が発生します。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds