Eryk Sun <eryk...@gmail.com> added the comment:

> Windows doesn't let you remove files and directories that are used 
> by a process. 

Windows does allow deleting open files/directories, but read/execute, 
write/append, and delete/rename access have to be explicitly shared when 
opening a file or directory. WinAPI SetCurrentDirectoryW (called by os.chdir) 
does not share delete access when opening a directory as the new working 
directory, and the handle is kept open to use as the NTAPI RootDirectory handle 
when opening relative paths. So the directory can only be deleted after either 
the working directory changes or the process exits.

See bpo-35144 for the source of the recursion error. An onerror handler was 
added that retries rmtree() after attempting to reset permissions. I proposed a 
workaround in the linked issue, but I don't think it's enough. Maybe there 
should be a separate onerror function for Windows.

The two common PermissionError cases to handle in Windows are readonly files 
and sharing violations. If the readonly attribute is set, we can remove it and 
retry the unlink() or rmdir() call. I don't think there's no need for a 
recursive call since rmtree() only removes empty directories. 

For a sharing violation (winerror 32), all that can be done is to set an atexit 
function that retries deleting the directory. If rmtree() still fails, emit a 
resource warning and give up.

----------
nosy: +eryksun

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue42796>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to