Python 之 glob讀取路徑下所有檔案夾或檔案方法

來源:互聯網
上載者:User

標籤:glob   unix shell   join   extend   python   

    在python中,glob模組是用來尋找匹配的檔案的
    在尋找的條件中,需要用到Unix shell中的匹配規則:
       *    :   匹配所所有
       ?    :   匹配一個字元
       *.*  :   匹配如:[hello.txt,cat.xls,xxx234s.doc]
       ?.*  :   匹配如:[1.txt,h.py]
       ?.gif:   匹配如:[x.gif,2.gif]

    如果沒有匹配的,glob.glob(path)將返回一個空的list:[]

import glob  def get_all():      '''''擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面所有的檔案'''      return glob.glob('F:\\wfpdm\\My_Proc_Data_ZXTZ\\*.*')  def get_my_file():      '''''擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面檔案名稱為4個字元的檔案'''      return glob.glob('F:\\wfpdm\\My_Proc_Data_ZXTZ\\????.txt')def get_batch_file():      '''''擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面副檔名為\'.txt\'的檔案'''      return glob.glob('F:\\wfpdm\\My_Proc_Data_ZXTZ\\*.txt')  def main():      print('擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面所有的檔案:')    tem_files = get_all()      print(tem_files)      print('擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面檔案名稱為4個字元的檔案:')      tem_files = get_my_file()      print(tem_files)      print('擷取目錄[F:\\wfpdm\\My_Proc_Data_ZXTZ]下面副檔名為\'.txt\'的檔案:')      tem_files = get_batch_file()      print(tem_files)  if __name__ == '__main__':      main()  


另,也可採用join方法實現檔案的擷取。

from os.path import exists, isdir, basename, join, splitextfrom glob import globEXTENSIONS = ['.zxtz']def get_categories(datasetpath):    '''得到所有分類,檔案夾名稱'''    cat_paths = [files                 for files in glob(datasetpath + "/*")                  if isdir(files)]    cat_paths.sort()    cats = [basename(cat_path) for cat_path in cat_paths]    return catsdef get_files(path, extensions=EXTENSIONS):    '''返回分類路徑path下的所有視頻檔案名稱,list'''    all_files = []    all_files.extend([join(path, basename(fname))                    for fname in glob(path + "/*")                    if splitext(fname)[1] in extensions])    return all_files



著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Python 之 glob讀取路徑下所有檔案夾或檔案方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.