使用os模块在另一个驱动器(D :)中创建目录

问题描述 投票:0回答:1

我想创建一个具有特定路径的目录(如果它不存在)。但是当路径在另一个驱动器(D :)中时,dir不会被创建,我得到以下消息---> FileNotFoundError [WinError3]系统找不到指定的路径... Complete trace of the error

Even with os.chdir("D:"), still got error

短代码片段(self.inputfile给出了目录的路径)

    if not os.path.exists(f"{self.inputfile}/output"):
        os.makedirs(f"{self.inputfile}/output")

编辑:在我的情况下,我试图创建一个目录,但其中一个子目录以.zip结束,导致错误,删除后,一切正常,使用os.chdir是没有必要的

python python-3.x python-3.7 python-os
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.