I am using the rmtree method from shutil in Python (2.7).
What are all possible exceptions that can occur while calling this method?
According to the implementation, you'll have to check OSError
.
But you can use the argument ignore_errors=True
on call to...ignore errors ;) or give a callback onerror
that will check the exceptions during the execution of file removal. (cf shutil.rmtree documentation)
Unless you do something very funky, os.error
and OSError
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With