本文介绍了如何获取父目录位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此代码是在b.py中获取templates/blog1/page.html:
this code is get the templates/blog1/page.html in b.py:
path = os.path.join(os.path.dirname(__file__), os.path.join('templates', 'blog1/page.html'))
但是我想获取父目录位置:
but i want to get the parent dir location:
aParent
|--a
| |---b.py
| |---templates
| |--------blog1
| |-------page.html
|--templates
|--------blog1
|-------page.html
以及如何获取父位置
谢谢
已更新:
这是正确的:
dirname=os.path.dirname
path = os.path.join(dirname(dirname(__file__)), os.path.join('templates', 'blog1/page.html'))
或
path = os.path.abspath(os.path.join(os.path.dirname(__file__),".."))
推荐答案
您可以重复应用dirname来爬高:dirname(dirname(file))
.但是,这只能到达根包.如果这是一个问题,请使用os.path.abspath
:dirname(dirname(abspath(file)))
.
You can apply dirname repeatedly to climb higher: dirname(dirname(file))
. This can only go as far as the root package, however. If this is a problem, use os.path.abspath
: dirname(dirname(abspath(file)))
.
这篇关于如何获取父目录位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!