在Python中,你不能直接使用cd
命令來改變工作目錄,因為cd
是Unix和Linux系統中的shell命令
import os
# 切換到指定目錄
def change_directory(path):
if os.path.isdir(path):
os.chdir(path)
print(f"成功切換到 {path}")
else:
print(f"{path} 不是一個有效的目錄")
# 獲取當前工作目錄
def get_current_directory():
current_path = os.getcwd()
print(f"當前工作目錄是 {current_path}")
return current_path
# 示例
if __name__ == "__main__":
current_dir = get_current_directory()
print(f"當前工作目錄是: {current_dir}")
new_dir = "/path/to/your/target/directory"
change_directory(new_dir)
請將/path/to/your/target/directory
替換為你想要切換到的目錄路徑。注意,這個示例需要在支持os
模塊的環境中運行,例如Python的標準解釋器或Jupyter Notebook等。