在Python中,你不能直接使用cd
命令來改變工作目錄,因為cd
是Unix和Linux系統中的shell命令
import os
# 切換到指定目錄
def change_directory(path):
if os.path.exists(path):
os.chdir(path)
print(f"成功切換到 {path}")
else:
print(f"目錄 {path} 不存在")
# 獲取當前工作目錄
def get_current_directory():
current_path = os.getcwd()
print(f"當前工作目錄是 {current_path}")
if __name__ == "__main__":
directory_to_change = "/path/to/your/target/directory"
change_directory(directory_to_change)
get_current_directory()
將/path/to/your/target/directory
替換為你想要切換到的目錄路徑。這個腳本首先嘗試切換到指定目錄,然后打印出當前的工作目錄。