I have successfully extracted data from a large .rar archive (1.9TB) using 7-zip and now I want to delete the archive. However, before I do so, I would like to save path names and, most importantly, the corresponding CRC values that are listed in the CRC column in the 7-zip file manager.
The only way to do this that I know of is via cmd.exe with the following command 7z l -slt <archive.zip>. However, this method is not very efficient for my purposes. For one thing, command prompt's output window is limited in size. I know that I can adjust buffer size (perhaps even up to 32766), but the archive has over a million files... What is even more problematic, though, is the fact that the output of this method has a format that, as far as I know, cannot be altered and it is as follows:
Path = -
Folder = -
Size = -
Packed Size = -
Modified = -
Created =
Accessed =
Attributes = -
Encrypted = -
Solid = -
Commented = -
Split Before = -
Split After = -
CRC = -
Host OS = -
Method = -
Version = -
Volume Index = -
Whereas what I'm looking for is an output per file that looks like this:
<CRC> <pathname>
For example:
60CD248A *Folder1\text1.txt
61CD248A *Folder1\Folder2\text1.txt
62CD248A *Folder1\Folder2\text2.txt
Many thanks for your time and help.