首页 > 解决方案 > 权限错误:[WinError 32] 该进程无法访问该文件,因为它正被另一个进程使用:

问题描述

我不断收到这个错误,我真的很想知道如何解决它。

[WinError 32] The process cannot access the file because it is being used by another process:

代码是

import pyrugga
pyrugga.Match("Filename.xml")

然后错误信息如下

PermissionError                           Traceback (most recent call last)
in 
  1 import pyrugga
----> 2 pyrugga.Match("Filename.xml").close()

C:\ProgramData\Anaconda3\lib\site-packages\pyrugga\match.py in __init__(self, fn_name, zones)
 37         """
 38         (self.events,self.summary,self.players) = to_df(fn_name)
---> 39         self._genTimeLine()
 40 
 41         """

C:\ProgramData\Anaconda3\lib\site-packages\pyrugga\match.py in _genTimeLine(self)
 75         sql = open(os.path.join(d, 'timeline.sql'), 'r').read()
 76 
---> 77         os.remove(tmp_filename)
 78 
 79         timeline = pd.io.sql.read_sql(sql,conn)

PermissionError: [WinError 32] The process cannot access the file because it is being used by 
another process: '1b7f6c10-1809-46af-831a-6121a688ad45'

标签: python

解决方案


推荐阅读