#short
#python
#file-io
#directory
#delete-file
How can I delete a file or folder?
os.remove(): http://docs.python.org/library/os.htm...
os.rmdir(): http://docs.python.org/library/os.htm...
shutil.rmtree(): http://docs.python.org/library/shutil...
Path: https://docs.python.org/3/library/pat...
pathlib: https://docs.python.org/3/library/pat...
pathlib.Path.unlink(): https://docs.python.org/3/library/pat...
pathlib.Path.rmdir(): https://docs.python.org/3/library/pat...