(abs_root_path, b, data_files)
| 17 | |
| 18 | |
| 19 | def get_files_from_dir(abs_root_path, b, data_files): |
| 20 | for root, dirs, files in os.walk(abs_root_path): |
| 21 | data_files[b].extend(os.path.join(root, f) for f in files) |
| 22 | for d in dirs: |
| 23 | get_files_from_dir( |
| 24 | os.path.join(abs_root_path, d), os.path.join(b, d), data_files |
| 25 | ) |
| 26 | |
| 27 | |
| 28 | def get_data_files(relative_data_paths): |