New submission from Paul Moore:

It would be useful for shutil.rmtree to have a "force" argument that overrode 
read-only permission issues, essentially replicating the behaviour of the -f 
flag in rm -rf (Unix) and the -force parameter of del (Windows Powershell).

It's possible to use the onerror callback to implement this, but it's tricky to 
get right in a cross-platform manner. See 
http://stackoverflow.com/questions/2656322, which recommends

def onerror(func, path, exc_info):
    if not os.access(path, os.W_OK):
        os.chmod(path, stat.S_IWUSR)
        func(path)
    else:
        raise

and http://stackoverflow.com/questions/1889597 which recommends

def remove_readonly(func, path, excinfo):
    os.chmod(path, stat.S_IWRITE)
    func(path)

It's not clear whether either of these is portable, though (the former looks to 
me like it's Unix-specific and the latter like it's for Windows, but I'm not 
sure).

Having the functionality available in the standard library function directly 
avoids having people write tricky and potentially buggy code for what is a 
pretty common situation. (In particular, this comes up a lot in code that 
deletes git checkouts on Windows, where git makes parts of the .git directory 
readonly).

----------
components: Library (Lib)
messages: 223685
nosy: pmoore
priority: normal
severity: normal
status: open
title: Add a "force" parameter to shutil.rmtree
type: enhancement
versions: Python 3.5

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

Reply via email to