我需要分发一个用Python编写的应用程序作为exe,它将安装在用户计算机的Program Files文件夹中。由于Program Files默认是写保护的,我需要将任何文件保存到Windows上的%APPDATA%文件夹中。我这样做 - 我有settings.ini,settings_db.db和那里创建的另一个文件。
然而,似乎Python中的日志记录模块拒绝将其日志保存在那里,而是将其保存到根目录中。这是我的代码:
currentPath = os.environ["APPDATA"] + "\\tools\\"
if not os.path.exists(currentPath):
try:
os.makedirs(os.environ["APPDATA"] + "\\tools\\")
currentPath = os.environ["APPDATA"] + "\\tools\\"
except:
currentPath = os.getcwd()
if not os.path.exists(currentPath + "ubc.log"):
open(currentPath + "ubc.log", "w").close()
print currentPath + "ubc.log"
#Let's define the logging "manager" as well as logging format...
logging.basicConfig(filename=currentPath + "ubc.log",
format='%(asctime)-15s: %(name)-18s - %(levelname)-8s - %(module)-15s - %(funcName)-20s - %(lineno)-6d - %(message)s',
level=logging.DEBUG)
logger = logging.getLogger("gui-log")
上面的print
语句会返回正确的结果,并给我C:\Users\Bogdan\AppData\Roaming\utools\ubc.log
。 os.path.exists()
部分成功创建文件(如果不存在)。但是记录器不会在那里记录 - 而是记录到已执行.py
脚本的目录中的文件。
不确定是否重要,但在我拥有filename="ubc.log"
之前,它确实登录到该文件,但是当需要分发此应用程序时,我改变了它。
有人有什么想法吗?