0

当我尝试解压缩文件并删除旧文件时​​,它说它仍在运行,所以我使用了关闭功能,但它没有关闭它。

这是我的代码:

import zipfile
import os

onlineLatest = "testFile"
myzip = zipfile.ZipFile(f'{onlineLatest}.zip', 'r')
myzip.extractall(f'{onlineLatest}')
myzip.close()
os.remove(f"{onlineLatest}.zip")

我得到这个错误:

PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'Version 0.1.2.zip'

有人知道怎么修这个东西吗?

只有之前运行过的其他部分,但不要认为这是问题所在:

request = service.files().get_media(fileId=onlineVersionID)
fh = io.FileIO(f'{onlineLatest}.zip', mode='wb')
downloader = MediaIoBaseDownload(fh, request)
done = False
while done is False:
    status, done = downloader.next_chunk()
    print("Download %d%%." % int(status.progress() * 100))

myzip = zipfile.ZipFile(f'{onlineLatest}.zip', 'r')
myzip.extractall(f'{onlineLatest}')
myzip.close()
os.remove(f"{onlineLatest}.zip")
4

2 回答 2

2

尝试使用。这样你就不用关闭了。:)

with ZipFile(f'{onlineLatest}.zip', 'r') as zf:
    zf.extractall(f'{onlineLatest}')
于 2021-11-25T20:13:10.747 回答
1

将评论中的讨论总结为答案:

在 Windows 操作系统上,与 Linux 不同,如果系统上有任何进程在该文件上打开了文件句柄,则无法删除该文件。

在这种情况下,您通过句柄写入文件fh并通过myzip. 在删除它之前,您必须关闭两个文件句柄。

于 2021-11-25T21:20:22.727 回答