Python教程

python os 目录路径问题

本文主要是介绍python os 目录路径问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

用 os.getcwd() 获取到的是服务器根目录的路径,

而不是文件所在的项目文件里的路径

从别人源代码里注意了到此问题的解决方法,

ROOT_DIR = os.path.dirname(os.path.realpath(__file__))

参考代码 github : ResEncoder/config.py at master · easonnie/ResEncoder · GitHubThis repo is for residual-connected sentence encoder for NLI. - ResEncoder/config.py at master · easonnie/ResEncoderhttps://github.com/easonnie/ResEncoder/blob/master/config.py

这篇关于python os 目录路径问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!