在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
替换为你想要切换到的目录路径。这个脚本首先尝试切换到指定目录,然后打印出当前的工作目录。