从操作系统模块中获取抽象

时间:2019-05-08 12:29:58

标签: python python-3.x

我为bin和config目录创建了指向部署文件夹的符号链接,如下所示:

/opt/app/bin -> /opt/deployments/v1/bin
/opt/app/config -> /opt/deployments/v1/config

我有一个Python文件,名为/opt/app/bin/pullfiles.py。我已经尝试使用下面的代码来获取pullfiles.py文件的绝对路径:

import os
working_dir = f'{os.path.split(os.path.dirname(os.path.realpath(__file__)))[0]}

它给了我下面的结果:

/opt/deployments/v1

但我需要实际结果:

/opt/app

0 个答案:

没有答案