萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> 用Python遍歷C盤dll文件的方法

用Python遍歷C盤dll文件的方法

   這篇文章主要介紹了用Python遍歷C盤dll文件的方法,用fnmatch模塊實現起來非常簡單,需要的朋友可以參考下

  python 的fnmatch 還真是省心,相比於 java 中的FilenameFilter ,真是好太多了,你完成不需要去實現什麼接口。

  fnmatch 配合 os.walk() 或者 os.listdir() ,你能做的事太多了,而且用起來相當 easy。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 # coding: utf-8 """ 遍歷C盤下的所有dll文件 """ import os import fnmatch   def main(): f = open('dll_list.txt', 'w') for root, dirs, files in os.walk('c:'): for name in files: if fnmatch.fnmatch(name, '*.dll'): f.write(os.path.join(root, name)) f.write('n') f.close() print 'done...'   if __name__=='__main__': main()</pre>
copyright © 萬盛學電腦網 all rights reserved