(dir, ext)
| 113 | |
| 114 | |
| 115 | def SearchFiles(dir, ext): |
| 116 | list = glob.glob(dir+ '/**/*.' + ext, recursive=True) |
| 117 | if sys.platform == 'win32': |
| 118 | list = [ x.replace('\\', '/')for x in list] |
| 119 | return sorted(list) |
no test coverage detected
searching dependent graphs…