在python中更改当前工作目录

时间:2013-12-27 07:02:08

标签: python

我在桌面上创建了一个名为“headfirstpython”的文件夹,我需要将当前的工作目录更改为该文件夹及其内部的子文件夹。我使用os.getcwd()获取当前文件夹,它给了我'C \ Python32'。我使用os.chdir('../ headfirstpython / chapter3')来更改目录,但它告诉它无法找到路径

>>> import os
>>> os.getcwd()
'C:\\Python32'
>>> os.chdir('../headfirstpython/chapter 3')
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
os.chdir('../headfirstpython/chapter 3')
WindowsError: [Error 3] The system cannot find the path specified:         '../headfirstpython/chapter 3'
>>> os.chdir('../headfirstpython/chapter3')
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
os.chdir('../headfirstpython/chapter3')
WindowsError: [Error 3] The system cannot find the path specified:   '../headfirstpython/chapter3'
>>> 

2 个答案:

答案 0 :(得分:4)

我认为有些事情可能会有所帮助。

看起来你是在Windows系统上,所以你应该使用双反斜杠&#39; \\&#39;分开文件夹。

其次,如果您尝试更改为当前文件夹中的文件夹,则应使用单个点,而不是两个,例如os.chdir(&#39;。\\文件夹&#39;)

最后,如果您尝试访问的文件夹不是当前工作目录的直接子文件夹(或路径中的其他文件夹),则需要包含访问它的完整路径。既然你在桌面上说它,你可能想要这样的东西:

import os
os.chdir('C:\\Users\\username\\Desktop\\headfirstpython') ## Where username is replaced with your actual username

从这里,您还可以使用以下

将目录更改为chapter3子目录
os.chdir('chapter3') 

在这种情况下与

相同
os.chdir('.\\chapter3')

或者,如果你想罗嗦:

os.chdir('C:\\Users\\username\\Desktop\\headfirstpython\\chapter3')

希望有帮助吗?

答案 1 :(得分:-1)

我以前也遇到过同样的问题,当我发现如果我在桌面上创建了一个文件,该文件图像将显示在我的桌面上,但在C / users / Desktop中将不存在,则解决了这个问题。也许您可以检查文件是否存在于C驱动器的桌面中。希望这会有所帮助。