Python 删除目录中特定文件

代码如下,使用了递归:

 1 import sys
 2 currDir = sys.path[0]
 3 
 4 import os
 5 def removeFile(dir,postfix):
 6     if os.path.isdir(dir):
 7         for file in os.listdir(dir):
 8             removeFile(dir+'/'+file,postfix)
 9     else:
10         if os.path.splitext(dir)[1] == postfix:
11             os.remove(dir)
12 removeFile(currDir,'.txt')

 

posted on 2013-11-26 17:54  Andy Niu  阅读(6608)  评论(2编辑  收藏  举报