In a directory I have a lot of files, named more or less like this:
001_MN_DX_1_M_32 001_MN_SX_1_M_33 012_BC_2_F_23 ... ...
In Python, I ha
import os, re for f in os.listdir('.'): if re.match('001_MN_DX', f): print f