Python相關模組學習1 處理檔案名稱模組glob

來源:互聯網
上載者:User

>>> import glob
>>> dir(glob)
['__all__', '__builtins__', '__doc__', '__file__', '__name__', 'fnmatch', 'glob', 'glob1', 'has_magic', 'magic_check', 'os', 're']
>>> help(glob)
Help on module glob:

NAME
    glob - Filename globbing utility.

FILE
    d:/python24/lib/glob.py

FUNCTIONS
    glob(pathname)
        Return a list of paths matching a pathname pattern.
       
        The pattern may contain simple shell-style wildcards a la fnmatch.

DATA
    __all__ = ['glob']

它的主要方法就是glob,用它在指令碼中處理一批檔案名稱非常方便,樣本如下:
>>> glob.glob("c://")
['c://']
>>> glob.glob("c://*")
['c://arcldr.exe', 'c://arcsetup.exe', 'c://boot.ini', 'c://bootfont.bin', 'c://cmd.txt', 'c://COMMAND.COM', 'c://CONFIG.SYS', 'c://debug_trace.txt', 'c://DevTools', 'c://DFIMB.DAT', 'c://Documents and Settings', 'c://Intel', 'c://IO.SYS', 'c://MSDOS.SYS', 'c://MSOCache', 'c://NTDETECT.COM', 'c://ntldr', 'c://PAGEFILE.SYS', 'c://Program Files', 'c://Recycled', 'c://RECYCLER', 'c://response.txt', 'c://rt', 'c://SUHDLOG.DAT', 'c://System Volume Information', 'c://useprint.bat', 'c://VIDEOROM.BIN', 'c://WINDOWS', 'c://wmpub', 'c://WUTemp']
>>> glob.glob("c://*.txt")
['c://cmd.txt', 'c://debug_trace.txt', 'c://response.txt']

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.