【问题标题】:copy2 PermissionError: [WinError 32] The process cannot access the file because it is being used by another process:copy2 PermissionError: [WinError 32] 该进程无法访问该文件,因为它正被另一个进程使用:
【发布时间】:2017-06-02 07:21:56
【问题描述】:

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

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'

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

【问题讨论】:

  • 这里在黑暗中拍摄,但听起来你没有在某处关闭文件处理程序。

标签: python


【解决方案1】:

听起来您需要关闭文件或停止进程这里有一个链接,我发现我能够解决您的问题。 File handling in Python - PermissionError: [WinError 32] The process cannot access the file because it is being used by another process.

【讨论】:

    猜你喜欢
    • 2015-11-13
    • 2015-01-28
    • 2021-09-21
    • 2019-11-26
    • 1970-01-01
    • 2020-10-31
    • 2018-10-28
    • 2022-11-14
    • 2021-07-13
    相关资源
    最近更新 更多