How can I delete the contents of a local folder in Python.
The current project is for Windows but I would like to see *nix also.
|
2
|
|||||
|
|
|
Updated to only delete files and to used the os.path.join() method suggested in the comments. If you want to remove all contents of the folder just remove the if statement.
|
||||||
|
|
|
Try the shutil module
|
|||
|
|
|
You might be better off using
|
||
|
|
|
|
Expanding on mhawke's answer this is what I've implemented. It removes all the content of a folder but not the folder itself. Tested on Linux with files, folders and symbolic links, should work on Windows as well.
|
|||
|
|
