Python 關於文件的操做

Python中對open()函數的說明:python

     Definition : open(name[, mode[, buffering]]) 函數

     Type : Function of __builtin__ module ui

     open(name[, mode[, buffering]]) -> file objectspa

1、如何獲取當前目前下的特定後綴的文件名?code

需求:有時咱們須要處理當前目錄下大量的.txt文檔文件,可是這些文件的名字又沒有規律,如何獲得這些文件名?blog

解決方案:python是使用模塊glob:文檔

 9 import os.path, time
10 import exceptions
11 import glob
12 import os
13 rootdir = os.getcwd()
14 if __name__ == '__main__':
15   file_object = open('name.set', 'w')
16   for file_name in glob.glob("*.jpg"):
17    print file_name
18    print ('*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*')
19    file_object.write(rootdir + file_name + "\n")
20   file_object.close( )
相關文章
相關標籤/搜索