-1

我正在尝试从 Python 脚本更改终端的目录。程序成功执行,但我终端中的目录没有改变。这是程序。

os

path = "/home/najeeb/Desktop/project/scan"

r = os.getcwd()
print "\n Current working directery is %s \n" % r

os.chdir(path)
retval = os.getcwd()

print "Directery changes successfull %s \n" % retval

截屏

4

1 回答 1

0

Python 无法更改终端运行的目录。它只能更改脚本内部的路径。

于 2015-10-05T14:12:00.523 回答