肉渣教程

文件通配

上一节 下一节

glob模块

glob模块可提供文件通配的功能,利用该模块,可根据通配规则获取指定目录下符合规则的文件或文件夹名称,返回的结果是由这些名称构成的列表对象。

以上述图中的zhuanfou文件夹为例,如下使用python的glob模块进行文件通配。

$ ls
t1.py       test        zf.py       zhuanfou.txt
$ python
Python 2.7.10 (default, Oct  6 2017, 22:29:07) 
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import glob
>>> glob.glob( "*.py" )
['t1.py', 'zf.py']

文件通配

上一节 下一节