从相对于当前文件的路径获取绝对值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从相对于当前文件的路径获取绝对值相关的知识,希望对你有一定的参考价值。
Sometimes (ex. django templates section at setting.py), a function expects an absolute path, but it's more practical when developing to refer it to the current file position in our code base. The rel function does exactly that.
import os def rel(*x): return os.path.normcase(os.path.join(os.path.dirname(__file__), *x))
以上是关于从相对于当前文件的路径获取绝对值的主要内容,如果未能解决你的问题,请参考以下文章