Tagged Questions

1
vote
2answers
77 views

Java ZipOutputStream only deflate certain files / deflate filter

This is a two part question, really. Preface: I use WinRAR to compress files. It gives you the option of only compressing certain files. I can filter by file extension so that, say, JPEG files are ...
1
vote
1answer
165 views

How to calculate CRC of a WinRAR file header?

Talking about this: http://www.win-rar.com/index.php?id=24&kb_article_id=162 I'm able to calculate the correct CRC of an archive header (MAIN_HEAD) by doing: $crc = crc32(mb_substr($data, ...
1
vote
1answer
3k views

extracting zip with winrar command line?

While trying to extract zip files i get the error c:/path/name.zip is not RAR archive No files to extract my code is p.StartInfo.FileName = @"C:\Program Files\WinRAR\rar.exe"; ...
0
votes
1answer
24 views

Compress a file with todays date

I want to compress a file with name ASCOnnect200_V5.0.0.0_09_Dec_11.zip. I it possible with winrar/rar? The file name ASCOnnect200_V5.0.0.0_ will be always constant and the date part will be in the ...
0
votes
2answers
46 views

Possible to compress a directory with Rar.exe to todays date.rar?

How do I compress a directory with Rar.exe to (todays date).rar with use of a dos batch file? Or do I need to use another file compression program? Ty Edit: Ive tried using ...
0
votes
1answer
45 views

On which data is the FileCRC in NEWSUB_HEAD of a RAR Recovery Record based?

I am trying to figure out on which data the crc32 field in the header of a RAR Recovery Record is based. I am trying to recreate a RAR volume based on a previous RAR volume and the extracted contents. ...