(input_path, output_path)
| 46 | |
| 47 | |
| 48 | def copy2(input_path, output_path): |
| 49 | print(f"copying data from {input_path} to {output_path}...") |
| 50 | input_file = tb.open_file(input_path, mode="r") |
| 51 | input_file.copy_file(output_path, overwrite=True, filters=filters) |
| 52 | input_file.close() |
| 53 | |
| 54 | |
| 55 | def copy3(input_path, output_path): |