如何从子文件夹中获取根文件夹项目?

我正在尝试从 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


慕婉清6462132
浏览 84回答 2
2回答

呼如林

您可以导入核心并使用它的__file__属性来获取它的路径。import osimport corecoreDir = os.path.dirname(os.path.abspath(core.__file__))

FFIVE

from pathlib import Path root = Path(__file__).parent
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python