小能豆

如何在 Python 中设置当前工作目录?

javascript

如何在 Python 中设置当前工作目录?


阅读 22

收藏
2024-09-21

共1个答案

小能豆

您可以使用模块在 Python 中设置当前工作目录os。操作方法如下:

  1. 导入os模块
  2. 用于os.chdir(path)将当前工作目录更改为指定路径。

例子:

import os

# Specify the path you want to set as the current working directory
new_directory = '/path/to/your/directory'

# Change the current working directory
os.chdir(new_directory)

# Verify the change
current_directory = os.getcwd()
print(f"The current working directory is now: {current_directory}")

笔记:

  • 确保您提供的路径存在;否则,您将得到一个FileNotFoundError
  • 您也可以使用相对路径,具体取决于您当前的工作目录。例如,os.chdir('..')将使您上移一个目录级别。
2024-09-21