rubenlm <ru...@libhertz.com> added the comment: Here is my current error handler:
def handleRmtreeError(func, path, exc): excvalue = exc[1] if excvalue.errno == errno.EACCES: if func in (os.rmdir, os.remove): parentpath = path.rpartition('/')[0] os.chmod(parentpath, stat.S_IRWXU) # 0700 func(path) elif func is os.listdir: os.chmod(path, stat.S_IRWXU) # 0700 rmtree(path=path, ignore_errors=False, onerror=handleRmtreeError) else: raise Looking back to this code there is an infinite recursion bug if os.chmod fails for some reason in the os.listdir condition. I don't see an easy way to solve this... ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8523> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com