If you need to recover files from a previous backup, AutoBackupTool can download, decrypt, and extract any backup stored on your Google Drive in just a few clicks. The restore flow is entirely GUI-driven — no command-line decryption or manual file handling required.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Eraiyanbupeterfrancis/AutoBackupTool/llms.txt
Use this file to discover all available pages before exploring further.
Restore a backup
Open the restore dialog
Click Restore Backup in the main window. AutoBackupTool queries Google Drive for all files whose title contains
backup_ and opens a popup listing the results.Select a backup
In the popup, choose the backup you want to restore from the list. Backups are shown by their filename, for example
backup_20240115_220000.enc.Choose a destination folder
Click Restore Selected. A folder picker opens — navigate to the directory where you want the files extracted and confirm your selection.
Watch the progress bar
The progress bar advances to 50% when the encrypted file has been downloaded from Drive, then moves to 100% when decryption and extraction are complete.
What happens internally
The restore process runs in a background thread and calls two functions frombackup_utils.py:
list_backups()— queries Drive withtitle contains 'backup_'and returns a list of(title, file_id)tuples used to populate the selection dialog.restore_backup(file_id, dest_folder, progress_callback)— downloads the encrypted content from Drive, callsprogress_callback(50)after the download, then passes the encrypted bytes todecrypt_and_extract.decrypt_and_extract(encrypted_bytes, dest_folder)— decrypts the content with Fernet and extracts the zip archive into your chosen destination folder:
You must have the same
ENCRYPTION_KEY in backup.env that was used when the backup was created. If you have rotated your key since the backup was made, Fernet will raise a decryption error and the restore will fail. There is no way to recover a backup encrypted with a different key.