(path, matching)
| 69 | return out |
| 70 | |
| 71 | def findFiles(path, matching): |
| 72 | out = [] |
| 73 | for root, dirnames, filenames in os.walk(path): |
| 74 | for fileName in fnmatch.filter(filenames, matching): |
| 75 | out.append(os.path.join(root, fileName)) |
| 76 | return out |
| 77 | |
| 78 | def findFilesExt(path, names, exclDirs = []): |
| 79 | out = [] |