Restore files with a listWhen you don't want to restore all files in step 3, then you can use a list of files that you want to restore. Use the parameter '--file-list <file name>' for a simple list or '--file-list-csv <file name>' for a list in CSV format. Simple list: --file-list <file name>The list file has a simple format. At the beginning of the line is the file number (from --list), then comes a colon. After the colon can be any text. The text after the colon will be ignored. Sample file with 10 files to restore: 1003: 283: 553: 18: live.1.shadowIndexHead, 4096 bytes, 1438688946, Tue Aug 4 13:49:06 2015, Start block 589824 19: live.2.directoryStoreFile, 4096 bytes, 1438688943, Tue Aug 4 13:49:03 2015, Start block 524338 20: live.2.directoryStoreFile.shadow, 1088 bytes, 1438688947, Tue Aug 4 13:49:07 2015, Start block 524374 21: live.2.indexArrays, 4096 bytes, 1438688947, Tue Aug 4 13:49:07 2015, Start block 524322 22: live.2.indexCompactDirectory, 1024 bytes, 1438688947, Tue Aug 4 13:49:07 2015, Start block 524321 450: 451: With this function its easy to select files to restore or exclude files from restoring. As step 4 restores the whole directory structure (even when you restore only a few files), can you use at the end after '-s6' the command 'hfsprescue --remove-empty-dirs' to remove the empty directories. Example: Exclude filesThis example shows how to exclude files with the extensions '.download' and '.part' from restoring. hfsprescue --list | grep -v ".download, " | grep -v ".part, " > files.list
• 'grep' is used with '-v' to exclude the pattern from the output. The command of step 3: hfsprescue -s3 /dev/sdb1 --file-list files.list Example: Restore files with modification datesThis example creates a list with files that have a modification date of 4., 5. and 12. August 2015.
hfsprescue --list | grep " Aug 4 " | grep " 2015, " > files.list
• 'grep' is used get the text with the pattern. The command of step 3: hfsprescue -s3 /dev/sdb1 --file-list files.list Example: Exclude files with 0 bytesThis example creates a list with files that are bigger than 0 bytes. hfsprescue --list | grep -v ", 0 bytes, " > files.list
• 'grep' is used with '-v' to exclude the pattern from the output. The command of step 3: hfsprescue -s3 /dev/sdb1 --file-list files.list CSV: --file-list-csv <file name>To accomplish a more complex filter for files, use some kind of Excel/Spreadsheet software. Export the file list with '--csv'. Import the file in your spreadsheet program and do the modfications. Then export/save the data to a new CSV file. The delimiter must be a semicolon. The header line (first line) will be ignored by hfsprescue. Sample file: "Number";"File Name";"Parent ID";"Catalog ID";"File Size";"File RAW Time";"File Time";"Start block";"HFS+ Compressed";"EOF" 14;"fseventsd-uuid";28;29;36;1438141708;"Wed Jul 29 05:48:28 2015";393217;"No";"No" 15;"reverseStore.updates";26;96;1;1438688947;"Tue Aug 4 13:49:07 2015";622602;"No";"No" 16;"store.updates";26;95;3;1438688947;"Tue Aug 4 13:49:07 2015";622601;"No";"No" 17;"live.1.shadowIndexGroups";26;132;6;1438688945;"Tue Aug 4 13:49:05 2015";163913;"No";"No" 18;"live.1.shadowIndexHead";26;221;4096;1438688946;"Tue Aug 4 13:49:06 2015";589824;"No";"No" 19;"live.2.directoryStoreFile";26;194;4096;1438688943;"Tue Aug 4 13:49:03 2015";524338;"No";"No"
© 2024 by
Elmar Hanlhofer |