我正在运行一个烧瓶项目,我正在寻找一种方法来创建一个高于当前应用程序运行路径的目录。例如:
dirA -->
dirBinA -->
peter.py
griffin.sh
dirCinA -->
index.py <--------- this is the flask app that's running
tom.css
dick.html
harry.js
dirDinA --> <--------- this directory doesn't exist yet
anotherDir -->
turtle.py
我想从正在运行的烧瓶应用程序的anotherDir
新目录中创建一个新目录dirDinA
dirCinA/index.py
如果我尝试使用os.mkdir("../dirDinA/anotherDir/")
,那么烧瓶会说OSError: [Errno 2] No such file or directory: '../dirDinA/anotherDir'