我在使用python

时间:2016-02-19 02:18:21

标签: python

每当我使用我编写的程序更改目录时,它都会更改为目录,但会显示消息“找不到目录”。我认为这可能与我写下所有内容的顺序有关,但我找不到什么是错的。有什么提示吗?

if command == ("cd"):
    changedDIR = input("Directory name: ")
    os.chdir(changedDIR)
    if not os.path.exists(changedDIR):
        print("Directory not found.")
        commandLine()

1 个答案:

答案 0 :(得分:0)

你需要使用它 os.getcwd() 检查目录是否存在:)