Python 3 删除目录时出错 [WinError 32] 该进程无权访问该文件,因为它正被另一个进程使用

问题描述

我正在创建一个函数,如果目录已经存在,则删除该目录,然后无论该目录是否已经存在,它都会在之后创建它。

第一次运行代码时,它运行良好,但是如果我再次尝试运行它,则会弹出以下错误[WinError 32] 该进程无法访问该文件,因为它正在被使用另一个过程。 我没有打开任何其他东西,所以我不知道错误可能来自哪里

我使用的是 Windows 10 和 Python 3.8.5

import os
import shutil

Path_1 = "D:/felip/Redes_Neuronales_Team/Redes_Neuronales_Pruebas/Prueba_del_programa/DirA"
Path_2 = "D:/felip/Redes_Neuronales_Team/Redes_Neuronales_Pruebas/Prueba_del_programa/DirB"

#For the 1st Directory

if os.path.exists(DirA):
    shutil.rmtree(DirA)
        
#For the 2nd Directory

if os.path.exists(DirB):
    shutil.rmtree(DirB)
   
os.mkdir(DirA)
os.mkdir(DirB)       

解决方法

您可以尝试使用该文件夹查找进程,然后将其终止。 Find out which process is locking a file or folder in Windows