The Restore tab in Kopia Desk lets you copy an entire backed-up folder to any location you choose — useful after a Windows reinstall, a new user profile, or when the original source path no longer exists. Unlike the Compare tab, which only fills in missing files against an existing local folder, Restore transfers every file from the backup unconditionally.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Pachanga12/Kopia_Desk_Beta_1/llms.txt
Use this file to discover all available pages before exploring further.
How It Works
Switch to the Restore tab
Click the Restaurar tab in the top bar of the main panel. The view shows a prompt to select the drive that contains your backup.
Select the backup drive
Choose the drive from the destination dropdown in the sidebar. This is the external drive or USB that holds your
KopiaDesk_Backup folder — not the drive you want to restore to.Load available backup folders
Kopia Desk calls
restore:list-sources, which reads .kopia-data/manifests/ on the selected drive and returns the name of every folder that has a manifest file. The results appear as a list in the Restore panel.restore:list-sources only finds folders that have a .json manifest in .kopia-data/manifests/. If a manifest was deleted manually, that folder will not appear in the list even if its backup files still exist on the drive.Select the folder to restore
Click the name of the backed-up folder you want to recover. This selects it as the restore source.
Choose a restore destination
Click the restore button. Kopia Desk opens a native Windows folder dialog (
dialog:select-restore-target) so you can pick any folder on your PC as the restore target. The original path is not required — you can restore to a completely different drive letter or user profile.Build the file list
restore:full-list reads the manifest for the selected folder and returns every file entry, each augmented with its absolute path on the backup drive (backupFullPath). This is the complete set of files that will be copied — no filtering against local content.Progress Events
During a restore,restore:copy-files sends a progress event to the renderer after each file is copied:
window.kopiaAPI.onProgress callback:
Relative Structure Preserved
Files are restored to the same relative path they had when they were backed up. If the backup manifest records a file atFotos/Vacaciones/playa.jpg, it will be written to <targetDir>/Fotos/Vacaciones/playa.jpg in the restore destination. All intermediate directories are created automatically.
Restore vs. Compare
Restore and Compare both copy files from the backup to your PC, but they serve different purposes:| Restore | Compare | |
|---|---|---|
| What it copies | All files in the backup folder | Only files missing from a local folder |
| Requires an existing local folder | No | Yes |
| Detects files lost from backup | No | Yes |
| Best use case | After format or new PC | Accidental deletion recovery |