Created
December 4, 2014 04:54
-
-
Save aeesky/b57b0e3fd62aecdfec05 to your computer and use it in GitHub Desktop.
Revisions
-
aeesky created this gist
Dec 4, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ 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))