Python 3 删除目录时出错 [WinError 32] 该进程无权访问该文件,因为它正被另一个进程使用
Python 3 Error deleting directory [WinError 32] The process does not have access to the file because it is being used by another process
我正在制作一个函数,如果目录已经存在,则删除该目录,然后无论该目录是否已经存在,它都会在之后创建它。
我第一次 运行 代码,它运行良好,但如果我再次尝试 运行ning 它,会弹出以下错误:[WinError 32] The process无权访问该文件,因为它正被另一个进程使用。
我没有打开任何其他东西,所以我不知道错误可能来自哪里
我正在使用 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)
您可以尝试找到使用该文件夹的进程然后将其终止。 找出哪个进程正在锁定 Windows 中的文件或文件夹
我正在制作一个函数,如果目录已经存在,则删除该目录,然后无论该目录是否已经存在,它都会在之后创建它。
我第一次 运行 代码,它运行良好,但如果我再次尝试 运行ning 它,会弹出以下错误:[WinError 32] The process无权访问该文件,因为它正被另一个进程使用。 我没有打开任何其他东西,所以我不知道错误可能来自哪里
我正在使用 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)
您可以尝试找到使用该文件夹的进程然后将其终止。 找出哪个进程正在锁定 Windows 中的文件或文件夹