-1

最后,脚本无法删除抛出错误消息的文件,例如

该进程无法访问该文件,因为它正被另一个进程使用:'C:\Users\shruthi.sundaresan\Downloads\Sears_Auto_Center_Feedback.zip'。

谁能帮忙删除文件?

这是我执行的代码。

zfile = ZipFile("C:\\Users\\shruthi.sundaresan\\Downloads\\Sears_Auto_Center_Feedback.zip")
zfile.extractall(path = "C:\\Users\\shruthi.sundaresan\\Desktop\\extract")

time.sleep(20)
import os
os.remove("C:\\Users\\shruthi.sundaresan\\Downloads\\Auto_Center_Feedback.zip")
4

1 回答 1

4

确保它已关闭。

with ZipFile(r"C:\...") as zfile:
    zfile.extractall(path = r"C:\...")
于 2013-06-03T07:01:04.887 回答