What is the easiest way to do the equivalent of rm -rf in python?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
|||||
|
|
shutil.rmtree() is right answer, but just look at another useful function - os.walk() |
|||
|
|
|
While useful, rmtree isn't equivalent: it errors out if you try to remove a single, which
To get around this, you'll need to check whether a your path is a file or a directory, and act accordingly. Something like this should do the trick:
|
|||
|
|