9

如果您从与脚本所在位置不同的目录和驱动器运行冻结的 Python 脚本(使用 py2exe 冻结),那么确定执行脚本路径的最佳方法是什么?

我尝试过的几个解决方案

inspect.getfile(inspect.currentframe())

问题:不返回完整路径。它只返回脚本名称。

os.path.abspath( __file__ )

问题:在 Windows 上不起作用

os.path.dirname(sys.argv[0])

问题:返回空字符串。

os.path.abspath(inspect.getsourcefile(way3))

如果驱动器与 pwd 不同,将无法工作

os.path.dirname(os.path.realpath(sys.argv[0]))

如果驱动器与 pwd 不同,将无法工作

这是一个最小的不工作示例

D:\>path
PATH=c:\Python27\;c:\Users\abhibhat\Desktop\ToBeRemoved\spam\dist\;c:\gnuwin32\bin

D:\>cat c:\Users\abhibhat\Desktop\ToBeRemoved\spam\eggs.py
import os, inspect, sys
def way1():
    return os.path.dirname(sys.argv[0])

def way2():
    return inspect.getfile(inspect.currentframe())

def way3():
    return os.path.dirname(os.path.realpath(sys.argv[0]))

def way4():
    try:
        return os.path.abspath( __file__ )
    except NameError:
        return "Not Found"
def way5():
    return os.path.abspath(inspect.getsourcefile(way3))

if __name__ == '__main__':
    print "Path to this script is",way1()
    print "Path to this script is",way2()
    print "Path to this script is",way3()
    print "Path to this script is",way4()
    print "Path to this script is",way5()

D:\>eggs
Path to this script is
Path to this script is eggs.py
Path to this script is D:\
Path to this script is Not Found

相关问题:

笔记

如果脚本位于您正在执行的同一驱动器上,@Fenikso 的解决方案将起作用,但当它位于不同的驱动器上时,它将不起作用

4

3 回答 3

12

从另一个驱动器运行时使用 cxFreeze 的另一种方法,即使使用 PATH:

import sys

if hasattr(sys, 'frozen'):
    print(sys.executable)
else:
    print(sys.argv[0])

来自 Python:

H:\Python\Examples\cxfreeze\pwdme.py

从命令行:

D:\>h:\Python\Examples\cxfreeze\dist\pwdme.exe
h:\Python\Examples\cxfreeze\dist\pwdme.exe

使用路径:

D:\>pwdme.exe
h:\Python\Examples\cxfreeze\dist\pwdme.exe
于 2012-04-24T08:36:24.763 回答
2

恕我直言,根据绝对路径行为不同的代码不是一个好的解决方案。相对路径解决方案可能会更好。使用 dirname 了解相对目录,使用 os.sep 了解跨平台兼容性。

if hasattr(sys, "frozen"):
    main_dir = os.path.dirname(sys.executable)
    full_real_path = os.path.realpath(sys.executable)
else:
    script_dir = os.path.dirname(__file__)
    main_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
    full_real_path = os.path.realpath(sys.argv[0])

freeze 属性是 python 标准。

也看看 Esky: http ://pypi.python.org/pypi/esky

于 2012-04-24T10:40:47.547 回答
0

试试这个:

WD = os.path.dirname(os.path.realpath(sys.argv[0]))

这就是我使用 cx_Freeze 来获取 .exe 真正运行的目录的方法。

于 2012-04-24T07:57:10.993 回答