我为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