詳細はあとで編集。とりあえず体裁整える前のコードだけ上げておく。
01 | # -*- coding: mbcs -*- |
02 | from fnmatch import fnmatch |
03 | import os |
04 |
05 | root = os.getcwd() |
06 | print root |
07 |
08 | for dirs in os.walk(root): |
09 | path = dirs[ 0 ] + '\\' |
10 | for f in dirs[ 2 ]: |
11 | if fnmatch(f, ' * .obj') or fnmatch(f, ' * .pch'): |
12 | print f |
13 | os.remove(path + f) |
0 件のコメント:
コメントを投稿