copy2 PermissionError:[WinError 32]进程无法访问该文件,因为另一个进程正在使用该文件:

2024-04-25 12:14:10 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在将文件复制到临时目录

def uploadAvatar(self, schid, img):
    try:
        img = path.abspath(img)
        filename = self.generateAvatarFileName(schid)
        temp_dir = tempfile.gettempdir()
        self.tmp = path.join(temp_dir, filename)
        copy2(img, self.tmp)
        #imgname = path.basename(self.tmp)
        imgdir = path.dirname(self.tmp)+path.sep
        self.retcode = ts3lib.createReturnCode()
        (error, ftid) = ts3lib.sendFile(schid, 0, "", "/avatar/"+filename, True, False, imgdir, self.retcode);
    except:
        try: from traceback import format_exc;ts3lib.logMessage(format_exc(), ts3defines.LogLevel.LogLevel_ERROR, "PyTSon Script", 0)
        except:
            try: from traceback import format_exc;print(format_exc())
            except: print("Unknown Error")

我上传后想删除它

def onServerErrorEvent(self, schid, errorMessage, error, returnCode, extraMessage):
    if self.retcode == returnCode: self.setAvatar(schid, self.tmp);remove(self.tmp)

但我总是

Error calling method of plugin Dynamic Avatar Changer: Traceback (most recent call last):
  File "C:/Users/blusc/AppData/Roaming/TS3Client/plugins/pyTSon/scripts\ts3plugin.py", line 259, in callMethod
    ret.append(meth(*args))
  File "C:/Users/blusc/AppData/Roaming/TS3Client/plugins/pyTSon/scripts\dynamicAvatar\__init__.py", line 114, in onServerErrorEvent
    if self.retcode == returnCode: self.setAvatar(schid, self.tmp);remove(self.tmp)
PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\Users\\blusc\\AppData\\Local\\Temp\\avatar_ZFV2RGU5MjNmb0NyN3hsN1NnU3BGQzdsTFZZPQ'

如何才能做到这一点?请帮忙!


Tags: pathselfformatimgfilenameuserstmpexc