由于在计算机上搜索文件,Exe无法运行

时间:2018-06-19 09:22:49

标签: python-3.x exe pyinstaller shutil os.path

当我在我的代码中包含以下代码段时,使用PyInstaller创建的exe不会运行。如果我直接添加文件的位置,exe工作正常。我想知道为什么会这样。

document1 = Document('templatemain.docx')#template
document=Document()#to edit
for r, d, f in os.walk("c:\\"):
    for files in f:
        if files == temp:
            strdir = (os.path.join(r))
            print(strdir)

os.chdir(strdir)
shutil.copy('templatemain.docx', strr1)

我使用上面的代码段在C盘中搜索我的模板'templatemain'。

此外,我注意到包含此代码段大大增加了执行时间

0 个答案:

没有答案