实际上需要走一些路并执行一些命令,下面是代码
代码:
import os
present_working_directory = '/home/Desktop/folder'
现在我在folder
if some_condition == true :
change_path = "nodes/hellofolder"
os.chdir(change_path)
print os.getcwd()
if another_condition == true:
change_another_path = "nodes"
os.chdir(change_another_path)
print os.getcwd()
**Result**:
'/home/Desktop/folder/nodes/hellofolder'
python: [Errno 1] No such file or directory
实际上这里发生的事情是当我第一次使用目录时os.chdir()
,该目录已更改为
'/home/Desktop/folder/nodes/hellofolder'
,
但是对于第二个,我需要通过移回一个文件夹来运行文件
'/home/Desktop/folder/nodes'
那么任何人都可以让我如何将一个文件夹移回python