0

我有一个 python 脚本,它应该更新程序(清除文件夹并将新文件复制到其中)。它工作正常,但是当我运行从我的脚本(使用 py2exe)生成的 *.exe 文件时,它给了我一条错误消息:

Traceback (most recent call last):
  File "update.py", line 10, in <module>
  File "shutil.pyc", line 254, in rmtree
  File "shutil.pyc", line 252, in rmtree
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: 'C:\\Project\\MyProg\\Prog\\app'

这是我的脚本:

app = 'C:\\Project\\MyProg\\Prog\\app'
update = 'C:\\Project\\MyProg\\Prog\\update'

os.system("taskkill /im file.exe /f")

time.sleep(2)

shutil.rmtree(app)
shutil.move(update, app)

newpath = update
if not os.path.exists(newpath):
    os.makedirs(newpath)

with open('info', 'w') as f:
    f.write("updated")
subprocess.call(['C:\\Project\\MyProg\\Prog\\app\\file.exe'])
4

1 回答 1

0

在对文件使用 py2exe 之前,请关闭脚本。如果您没有看到它正在运行,请转到任务管理器上的进程列表并确保您的脚本没有运行。它通常会在描述下显示为简单的 python。只需右键单击并选择结束进程,然后确认。

于 2012-09-26T02:14:14.350 回答