我正在尝试从 childs 文件夹的子项中获取根项目文件夹,然后使用 python 代码保存输出以进行调试,而不是添加路径 static
我的树路径看起来像这样
.
├── ChangeLog
├── core
│ ├── config.py
│ ├── models
│ ├── common
│ │ ├── utils.py
│ │ └── templates
├── debug
│ └── debug.log
fileDir = os.path.dirname(os.path.abspath(__file__))
parentDir = os.path.dirname(fileDir)
print(parentDir) # /home/xxxx/xxx/xxx/xxx/core
呼如林
FFIVE
相关分类