os.chdir(path)
时间: 2023-11-23 15:59:19 浏览: 134
Python对文件和目录进行操作的方法(file对象/os/os.path/shutil 模块)
这个函数是用来改变当前的工作目录到指定的路径。其中,path 是一个字符串类型的参数,表示要改变到的目录的路径。如果改变成功,则返回None。下面是一个简单的示例:
```
import os
# 获取当前工作目录
current_dir = os.getcwd()
print("当前工作目录:", current_dir)
# 改变当前工作目录到指定目录
os.chdir('/Users/username/Documents/')
print("当前工作目录:", os.getcwd())
```
运行结果:
```
当前工作目录: /Users/username
当前工作目录: /Users/username/Documents
```
阅读全文