gpt4 book ai didi

Python:脚本的目录

转载 作者:太空狗 更新时间:2023-10-29 21:22:57 27 4
gpt4 key购买 nike

我一直在寻找解决方案,但没有找到我需要的。

脚本路径:/dir/to/script/script.pyC:\dir\script.py

异常结果:

$ ./script.py
output: /dir/to/script
$ cd .. && ./script/script.py
output: /dir/to/script

os模块有什么功能吗?


我混合解决方案并写下:

print os.path.abspath(os.path.dirname(__file__))

但是很丑。有更好的方法吗?

最佳答案

os.path.realpath 会给你结果:

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

关于Python:脚本的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7293601/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com