我的 python 脚本将文件保存在文件路径的父级中:
desktop = os.path.dirname(os.path.realpath(__file__))
desktop = os.path.abspath(os.path.join(desktop, os.pardir))
file_path = desktop + "\\" + "text1.txt"
fo = open(file_path, "wb")
fo.write("blabla")
fo.close()
当我使用py2exe将此python脚本转换为exe时,file_path
找不到路径。如何防止这种情况?