(file_path)
| 7 | |
| 8 | |
| 9 | def read_binary_file(file_path): |
| 10 | try: |
| 11 | with open(file_path, 'rb') as f: |
| 12 | return f.read() |
| 13 | except FileNotFoundError: |
| 14 | print(f"Error: The file {file_path} does not exist.") |
| 15 | return None |
| 16 | |
| 17 | |
| 18 | def save(file_path, b64_data): |