python - What is a complete list of Exceptions that can be thrown by shutil.rmtree -


i using rmtree method shutil in python (2.7).

what possible exceptions can occur while calling method?

according implementation, you'll have check oserror. can use argument ignore_errors=true on call to...ignore errors ;) or give callback onerror check exceptions during execution of file removal. (cf shutil.rmtree documentation)


Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -