Python 本身没有内置的 cd
命令,因为 cd
是 Unix 和类 Unix 系统(如 Linux)中的 shell 内置命令,用于更改当前工作目录。然而,Python 可以通过 os
模块来访问和操作文件和目录。
要使用 Python 访问不同的路径,你可以使用 os
模块中的 os.chdir()
函数来更改当前工作目录,以及 os.getcwd()
函数来获取当前工作目录。此外,你还可以使用 os.listdir()
函数来列出指定目录中的文件和子目录。
以下是一个简单的示例:
import os
# 获取当前工作目录
current_directory = os.getcwd()
print(f"当前工作目录: {current_directory}")
# 更改当前工作目录
new_directory = "/path/to/your/desired/directory"
os.chdir(new_directory)
print(f"更改后的工作目录: {os.getcwd()}")
# 列出指定目录中的文件和子目录
directory_contents = os.listdir(new_directory)
print(f"{new_directory} 中的文件和子目录: {directory_contents}")
请注意,要使用 os.chdir()
和 os.listdir()
函数,你需要确保指定的路径是有效的,并且 Python 进程具有访问该路径的权限。