List of stored files in a backup
Hello,
is it possible to create a list of folders / files stored in a backup - to check what has been really stored or updated during the last backup?
Thanks for your input!
Ulrich


- Accedi per poter commentare

Not that I'm aware. YOu can double click your backup in Windows File explorer and it will open like a mounted drive that you can navigate and look for files, but that's it as far as I know.
If using a folder/file backup task, perhaps you could create a pre-backup command as a .bat file to list the files in the directory and output it to a text document in the same folder before the backup runs though?
For instance. Say you want to know everything in a folder on the root of C: called "file_share". In command prompt you would type:
Dir "C:\File_Share"
That would output all of the contents to the screen. You could instead, output it to a text file in the same directory or somewhere else using the "greater than" sign and a new text file called "foldercontents.txt" like this:
Dir "C:\File_Share" > "C:\File_Share\FolderContents.txt"
Copy such a command into notepad and save it as a .bat. Then point the Pre-command of your backup to run the newly created .bat first and your backup will now have this file in it so that you can open it and review what is listed there.
Mabye not the most efficient, but it would work. It won't however, give you just the files that were modified in that particular incremental version and would list all files in that directory (which should still technically be accurate for what can be recovered, but just not was backed up specifically in that incremental or differential backup).
- Accedi per poter commentare

To be clear, there is no simple way to identify which files were backed up the last backup.
In theory, you could mount or restore the backup before the last backup, and mount/restore the last image of the backed up disk onto another drive. Then you would use file/folder comparison tools or sync software, but these tools might not work well with system files and folders.
- Accedi per poter commentare