Mercurial > repos > yating-l > hubarchivecreator
comparison util/cleanDirectory.py @ 11:3f7c40fb51e8 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit c778f8ee85e9acc924c5c0a30042ac90c8e7a70d-dirty
| author | yating-l |
|---|---|
| date | Wed, 28 Dec 2016 17:50:06 -0500 |
| parents | 3e0c61b52a06 |
| children |
comparison
equal
deleted
inserted
replaced
| 10:cf1abb96a43d | 11:3f7c40fb51e8 |
|---|---|
| 1 #!/usr/bin/python | |
| 2 """Use to clean the directory after the run of HubArchiveCreator.py manually""" | |
| 3 import os | |
| 4 import shutil | |
| 5 | |
| 6 # Remove 'myHub.zip at root folder | |
| 7 try: | |
| 8 os.remove('myHub.zip') | |
| 9 except OSError as o: | |
| 10 # We don't need to crash the program | |
| 11 print 'Warning: ' + str(o) | |
| 12 | |
| 13 # Remove 'myHub' folder and its content | |
| 14 shutil.rmtree('myHub', ignore_errors=True) |
