Python: glob匹配文件的操作
(编辑:jimmy 日期: 2024/11/2 浏览:3 次 )
glob模块实例详解
glob的应用场景是要寻找一系列(符合特定规则)文件名。
glob模块是最简单的模块之一,内容非常少。用它可以查找符合特定规则的文件路径名。查找文件只用到三个匹配符:”*”, “"htmlcode">
dir dir/file.txt dir/file1.txt dir/file2.txt dir/filea.txt dir/fileb.txt dir/subdir dir/subdir/subfile.txt
匹配所有文件
可以用*匹配任意长度字节。glob.glob比较常用,返回一个list,也可用glob.iglob返回生成器。
import glob for name in glob.glob('dir/*'): print name
dir/file.txt dir/file1.txt dir/file2.txt dir/filea.txt dir/fileb.txt dir/subdir
匹配子目录文件
可以指定子目录名称,也可以用通配符代替,不显示指定。
print 'Named explicitly:' for name in glob.glob('dir/subdir/*'): print '\t', name print 'Named with wildcard:' for name in glob.glob('dir/*/*'): print '\t', name
Named explicitly: dir/subdir/subfile.txt Named with wildcard: dir/subdir/subfile.txt
单字节通配符匹配
除了*以外,还有"htmlcode">
dir/file1.txt dir/file2.txt dir/filea.txt dir/fileb.txt
字符区间匹配[0-9]
比如匹配后缀前是数字的文件。
for name in glob.glob('dir/*[0-9].*'):
print name
dir/file1.txt
dir/file2.txt
Ref:
官方文档
Python Module of the Week
补充知识:Python glob 递归遍历匹配文件;os.makedirs()递归创建目录
Glob递归遍历匹配文件
简约版
在python中,glob模块用来查找匹配文件
常用的匹配规则:
: 匹配所所有
"htmlcode">
from glob import glob file_path = "/home/lihuiyu/Code/results_S2_W20040/*/*.pth" print(glob(file_path))
排序版
我喜欢偷懒,所以,Coding能解决的问题一般不会人工解决;
我喜欢整洁,所以,Coding苛求完美,结果奢求整齐划一。
import re from glob import glob def atoi(s): return int(s) if s.isdigit() else s def natural_keys(text): return [atoi(c) for c in re.split('(\d+)', text)] file_path = "/home/lihuiyu/Code/results_S2_W20040/*/*.pth" file_list = glob(file_path) file_list.sort(key=natural_keys) for name in file_list: print(name)
os.makedirs()递归创建目录
os.mkdir()创建指定的目录,但如果其上一级目录不存在,则无法创建成功。
os.makedirs()实现递归创建目录的功能。
以上这篇Python: glob匹配文件的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇:Python Socket多线程并发原理及实现