Created
December 4, 2014 04:54
-
-
Save aeesky/b57b0e3fd62aecdfec05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| for root, dirs, files in os.walk('E:\CodeZone', topdown=False): | |
| for name in files: | |
| if name =='svn-git.log': | |
| log = os.path.join(root, name) | |
| print 'deleted ',log | |
| os.remove(log) | |
| # for name in dirs: | |
| # os.rmdir(os.path.join(root, name)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment