shell 命令 'cd' 允许用户导航和更改其当前工作目录。在 Python 中,os.chdir() 函数相当于修改工作目录。
import os os.chdir(path)
以下 Python 代码演示了用法os.chdir():
import os # Change the current working directory to 'new_dir' os.chdir('new_dir') # Print the current working directory print(os.getcwd())
自 Python 3.11 起,可以利用 chdir() 上下文管理器来确保完成后返回到原始工作目录:
from contextlib import chdir with chdir('new_dir'): # Perform operations within the 'new_dir' directory # Execution continues in the original working directory
以上是Python 的 os.chdir() 函数如何模仿 Shell 的 cd 命令?的详细内容。更多信息请关注PHP中文网其他相关文章!