在Python中,你可以使用os
模块的os.chdir()
函数来更改当前工作目录
import os try: os.chdir("path/to/your/directory") print("Successfully changed directory to", os.getcwd()) except FileNotFoundError: print("Error: Directory not found.") except PermissionError: print("Error: Permission denied to access the directory.") except Exception as e: print("Error:", str(e))
在这个示例中,我们尝试更改当前工作目录,并使用try-except
块捕获可能的异常。如果目录不存在,将引发FileNotFoundError
异常;如果权限不足,将引发PermissionError
异常。对于其他类型的异常,我们使用通用的Exception
类捕获并打印错误信息。