使用glob指定多个模式-python

时间:2018-08-21 20:15:59

标签: python glob

假设我有文件

bla_foo.txt
bla_Foo.txt
bla_bar.txt
xyz_Bar.txt
foo_bla.txt

是否可以用glob指定几种模式? 例如,如何仅选择*Foo.txt*foo.txt*bar.txt*Bar.txt

我知道如何用*Foo.txt仅选择*foo.txtglob('*[Ff]oo.txt')。但是,如果*bar.txt*Bar.txt也可以接受怎么办?使用glob甚至可以做到吗,还是我必须创建两个glob

glob('*[Ff]oo.txt')
glob('*[Bb]ar.txt')

0 个答案:

没有答案