Tagged Questions
RAR is a proprietary archive file format that supports data compression, error recovery, and file spanning.
7
votes
1answer
130 views
Compress a file with RAR
I have a text file that I want to compress after it gets an specified size. I've already seen GZipStream which works great, but RAR compression is much better.
I've been looking for a library that can ...
6
votes
6answers
6k views
Read content of RAR files using C#
Well the title says it all. Is there any way to read the content of a RAR file (support for multi-file RAR is a must)?
I don't want to extract the content to the disk, just read it like a stream.
4
votes
4answers
51 views
How to check rar install or not in linux via Bash Script?
How to check rar unrar installed or not in Linux via Bash Script ?
4
votes
2answers
297 views
Searching for compression library in c# that supports rar format
I want to add in my application functionality to decompress (and optionally compress) files in various format. I have libraries that supports zip, gzip, 7zip and bzip2. But still not found library ...
4
votes
3answers
226 views
Minimum memory for RAR decompression
What's the minimum memory needed to run a RAR decompression algorithm?
I want to port a RAR decompression algorithm to mobiles (iPhone, Android and BlackBerry) and want to know if there's a bare ...
4
votes
1answer
2k views
RAR decompression algorithm
I'm looking for the description of an algorithm that can be used to decompress RAR files. I don't need to create new archives, only decompress existing ones.
The Wotsit.org has the description of the ...
3
votes
4answers
314 views
How to determine compression method of a ZIP/RAR file
I have a few zip and rar files that I'm working with, and I'm trying to analyze the properties of how each file was compressed (compression level, compression algorithm (e.g. deflate, LZMA, BZip2), ...
3
votes
1answer
107 views
unraring/unzipping a file using python+django
I'm trying to write a distributable web app that will allow the user to upload a compressed archive (rar or zip), extract it on the server side, then do something else with the files. Is there a ...
3
votes
2answers
798 views
Ruby / rubyzip alternative capable of handling rar/tar/zip/7z?
I was wondering if anyone knows of rubyzip alternatives for Ruby, that can handle various formats in particular zip / rar / 7z?
I know of libarchive, but it's not complete for my purposes ( it's a ...
3
votes
7answers
2k views
Read content of RAR file into memory in Python
I'm looking for a way to read specific files from a rar archive into memory. Specifically they are a collection of numbered image files (I'm writing a comic reader). While I can simply unrar these ...
3
votes
2answers
5k views
RAR archives with java
Is there a good java API for manipulating RAR archive files someone could recommend? Googling did not turn up anything overwhelmingly convincing.
2
votes
1answer
53 views
Can Launch4J be set so that the exe files it creates cannot show its contents through zip/egg/rar file when right click on/ open with it?
Launch4J is a jar to exe converter. I used Launch4J to convert jar to exe but when I right click on that exe file Launch4J created, it shows the contents in the jar file (class, etc files) from which ...
2
votes
3answers
306 views
unrar archive while downloading it
I've got a program that downloads part01, then part02 etc of a rar file split across the internet.
My program downloads part01 first, then part02 and so on.
After some tests, I found out that using, ...
2
votes
2answers
305 views
Why .RAR file contains different files with the same name
I got a .RAR file which contains different files with the same name.
For example,
index.txt 40 Text Document 04/01/2010 4:40PM
index.txt 22 Text Document 04/01/2010 4:42PM
index.txt 10 Text Document ...
2
votes
1answer
179 views
Delphi RAR Component requesting a password for archive
I want to the this RAR component: http://www.philippewechsler.ch/RARComponent.php
By Philippe Wechsler.
But I don't understand how can I request a password NOT for files in an archive but for an ...
2
votes
1answer
277 views
batch programming: rar by cli, get multiple files RARed each in own archive
I'm trying to make a simple batch script but it keeps failing. I want to look for each file in a directory (basepath) and put each file in a separate rar archive.
If I use "%%~ni.rar" in the rar ...
2
votes
2answers
972 views
Gracefully convert .rar to .zip using Python
I'm currently making system call to "unrar and zip" commands. It interrupts and requires me to enter password while encounter password propected archives.
Is it possible to let it run and return a ...
1
vote
1answer
25 views
How to acquire extracted directory using pyUnrar2?
I'm using pyUnrar2 to batch extract rar files, what I would like to acquire is the name of the directory that the files reside in once extracted ?
1
vote
3answers
66 views
Is it possible to download just part of a ZIP archive (e.g. one file)?
I was wondering is there any way by which I can download only a part of a .rar or .zip file without downloading the whole file ?
There is a zip file containing files A,B,C and D.
I only need A. Can I ...
1
vote
4answers
122 views
Recommend a ZIP/RAR component? [closed]
Can anybody, having experience with this, recommend a nice open-source Un-zip/rar class I can use in my project to uncompress rar/zip files?
I'm writing a .Net 4.0 C# command line application.
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
0answers
53 views
RarInputStream ? Is there any in Java? [closed]
Possible Duplicate:
RAR archives with java
I am unable to find any decent library to compress/decompress winrar files using java.Anybody can point me to some good library?
1
vote
0answers
198 views
unrar.exe and | pipe on windows
I just downloaded the freeware unrar.exe from winrar website. If, from the command line, you tipe
unrar.exe p -inul myarchive.rar
It "prints" out to default std the content of my archive. Since the ...
1
vote
2answers
172 views
Delphi: make unicode RAR-component 2.0
I have RAR-component 2.0 and Delphi 2010. This component uses AnsiString for File Path. How can I make it unicode? I changed AnsiString to String in RAR.pas but it did not help.
Thanks!
1
vote
2answers
99 views
Un-rarring with java?
In a piece of my code, I want to download a .rar (archive) file in a certain folder and unrar it, rather than download all the files one by one.
However, I couldn't find a way to do this.
1
vote
0answers
190 views
Getting the stream of a .rar file [closed]
Possible Duplicate:
.NET Library to unzip ZIP and RAR files
Hi,
I need to get the stream of a .rar file. TO do this, do I need an external library or is there functionality within .NET ...
1
vote
1answer
177 views
Are there any free rar decompression implementations available for the android?
I think the answer is going to be no, since the only question on the matter on SO is about memory requirement. However, before I go porting unrar to the android, I'd like to know if someone has done ...
1
vote
1answer
447 views
Bash Script to Extract split archive files using rar
Here's what I want to do:
I have thousand of split rar archives on folder name Archives.
Name of the files 0001.part1.rar 0002.part2.rar 0003.part3.rar etc.
read 0001.part1.rar
create a directory ...
1
vote
1answer
306 views
shell script (running via cron) to enter password when prompted
I have a daily cron task which automatically unrars a rar file and processes it's contents, however, the contents are now password protected so i'm wondering if there's a reliable way to echo the ...
1
vote
1answer
365 views
Extracting RAR archive into multiple directories on Windows
On a Windows box, I need to extract a RAR archive so that individual files in it go into specific directories. I can provide, say, a text file that lists each file and the target directory for it? ...
1
vote
2answers
844 views
php (rar) i want to rar a folder using rar on Ubuntu (linux) by php (on dedi server) noob
hey guyz i want rar (not tar) my folder on my server by using php
RAR
RAR 3.93 Copyright (c) 1993-2010
Alexander Roshal 15 Mar 2010
Registered to my real name
OS
Ubuntu ...
1
vote
0answers
320 views
RAR Decompress on iPhone Device
Has anyone found a solution to decompressing RAR files on iPhone (not Jailbroken)? It would be great if there was a library similar to libz.
I did not find anything official from RARlab.
Anyone ...
1
vote
4answers
2k views
PHP library that can list contents of zip / rar files
Note: I NEED A LIBRARY not links to documentation about extensions my host doesn't have or want installed.
The subject says it all.
I don't need to extract any files for the moment (although that ...
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";
...
1
vote
4answers
1k views
Regular expression to match only the first file in a RAR file set
To see what file to invoke the unrar command on, one needs to determine which file is the first in the file set.
Here are some sample file names, of which - naturally - only the first group should be ...
0
votes
3answers
58 views
Java - Calculate File Compression
Is there a way to get the possible compression ratio of a file just reading it?
You know, some files are more compressible then others... my software has to tell me the percentage of possible ...
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. ...
0
votes
1answer
74 views
Streaming video content from RAR archives
I'm trying to stream video content from a RAR archive.
and it goes fine for the first seconds, but the problem is that the stream does not support fseek, so the client can't ask for more data, or ...
0
votes
0answers
18 views
Restricting Delegate Classloading for Resource Adaptor
I have an EAR application contains multilple EJB's and single Resource Adaptor. My EJB depends on some JARs which are under 'lib' directory.
Now the problem is that I have a JAR 'abc.jar' which are ...
0
votes
1answer
16 views
Plugin for Maven that Exports non-project files of choosing to a RAR/compressed filetype
Here's what I need to accomplish:
Take some files, and create a Zip/Rar/Tar file while running the maven package command.
With the maven-rar-plugin I can only create a compressed file containing all ...
0
votes
0answers
88 views
Using XADMaster framework on iOS
I'm trying to write a little app that extracts zip and rar files to a cache directory on the iPhone. Searching various sources, I've found that XADMaster is a very good library that supports a variety ...
0
votes
2answers
778 views
.rar, .zip files MIME Type
I'm developing a simple php upload script, and users can upload only ZIP and RAR files.
What MIME types I should use to check $_FILES[x][type]? (a complete list please)
Thank you..
0
votes
2answers
150 views
rar package not available ..?
I recently installed Ubuntu 10.04 on a machine I was trying to install 'rar' from the terminal, but I get an error that the package isn't 'available' .. !?
This is what I'm typing in:
apt-get ...
0
votes
0answers
119 views
Windows server 2008 R2 and decompressing [closed]
I need this for a paper, does Windows server 2008 R2 contain a UNZIP/UNRAR utility by default?
Additions:
I did more research and apparently windows server has the built-in compress/decompress ...
0
votes
1answer
85 views
rar library in actionscript
Wondering if anyone knows of any opensource rar library for actionscript, similar to fzip, which works for zip?
0
votes
0answers
569 views
Extract winrar file using java? [closed]
Possible Duplicate:
RAR archives with java
Hi all,
I have a lot of rar file (zipped using winrar program). Now I want to write a program that can do this automatically.
I have tried API in ...
0
votes
1answer
166 views
Is there an Unrar for Adobe AIR?
I'm working on a file system app and I need to be able to expand rar files. Is there a way I can do that?