Is there a RAR extractor (for multiple rar files like .r00 etc.) that will use all of my quad cores?
I've got a quad core Intel processor. I've got a big file split into little ones as RAR files, foo.r00, foo.r01, etc. which the RAR program extracts into one file/directory. Is there a RAR program that I can specify like "use four cores" in the extract...
Started by Christopher Done on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Additionally RAR is a solid archive , making.
Most compression algorithms (RAR included I am sure) are optimized for fast decompression, so most likely you are throttled by the disk I/O.
Compressing.
|
|
I would like to rar a folder but exclude a certain of folders and all the files beneath them - the .svn folder.
How could I make this happen using the rar console command (rar.exe)?
Answer Snippets (Read the full thread at stackoverflow):
The path....
Have you tried -x.svn*
dir .svn /b /s > files.lst rar (rest of command) -x@files.lst
The final=* delims=\" %%i in ('dir /s /b /a:d *svn') do (dir /b /s /q \"%i\") >> svn.lst 3) rar a -x@svn.lst and it's substructures.
|
|
What is the best option to open .rar files on Windows Vista?
Started by Chris_45 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
It can backup your data and reduce the....
What is the best option to open .rar files on Windows Vista?
WinRAR is a powerful archive manager.
If you like the command line you can.
Zip
Does lots more besides RAR: ZIP and ISO to name a few.
|
Ask your Facebook Friends
|
What are good libraries to use Unzip RAR and Zip files in .NET? Do they even exist? Do they cost money or are there also free ones?
Started by IceHeat on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
ZipLib - Free GPL - don't think it does rar though:
http://sharpdevelop.net/OpenSource/SharpZipLib/Default.aspx
You can use UnRAR.dll with P/Invoke:
http://www.rarlab.com/rar_add.htm
http://www.rarlab.com/rar/UnRARDLL.exe
Here's a....
|
|
Hi.
What is the command-line for rar and unrar?
I need to rar test.txt to test.rar, and to unrar test.rar to test.txt.
I need to put this functionality in a C# WinForm.
I have Windows XP and WinRar install
Thanks in advance.
Started by Gold on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SharpZipLib might help (I'm not sure if they support RAR but you can compress the files in other formats i.e ZIP)
Take a look at SevenZipSharp....
Http://www.respower.com/page_tutorial_unrar
So the commands are: rar and unrar
Source: I googled it.
|
|
I am trying to batch extract some rar's that are in some zip in some directories. Long story short this is my loop through the rar files:
for %%r in (*.rar) do ( unrar x %%r )
Problem is that %%r gets the wrong value. If the files name is "file name.rar...
Started by Bojan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Delims==" %i in (`dir /b *.rar`) do unrar x "%i"
If you are using it in a batch file, remember you:
for %%r in (*.rar) do unrar "%%r"
Also, if you aer curious where the problem lies, it's sometimes very helpful to simply replace the program....
|
|
Does the rar file format use a serious encryption (such as AES)?
Will it take unfeasibly long to brute force a password?
If not, what tools do you suggest that do so automatically?
Started by Andreas Bonini on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Does the rar file ....
DOS days or something from that time period).
Brute force extacting mechanisms for old versions of rar, but I do mean oooold, ...
Although I don't know which mechanism exactly, RAR used pretty solid encryption.
|
|
The RAR file format is somewhat new to me and I'm trying to understand why people are switching to it over the "zip" file format. What's so special about RAR's?
My initial assertion is that it's a poor choice for an archive format since native extraction...
Started by Nate on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at superuser):
RAR also has some better compression than .zip, but I wouldn't call containing executables as potential ....
Split a .rar file into several files so users could download each one seperately, or you could put each one on a floppy disk or CD.
|
|
A lot of people are compressing files with RAR, sending compressed files with RAR and so on.
ZIP is more standard and works on all platforms. Windows users have ZIP included and linux users have no trouble with that file format.
The tests I did sometime...
Started by FerranB on
, 20 posts
by 20 people.
Answer Snippets (Read the full thread at superuser):
Of course it depends heavily on the data, but most of the time fast RAR is....
RAR usually compresses much better than ZIP.
I use RAR, because the people I work with use RAR, and RAR works just fine for me and my needs.
|
|
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 matched:
yes.rar yes.part1.rar yes.part01.rar yes.part...
Started by Micke on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Def is_first_rar(filename) if ((filename =~ /part(\d+)\.rar$/) == nil) return (filename =~ /\.rar$/) != nil else return....
I am no regex expert but here is my attempt
^(yes|no)\.(rar|part0*1\.rar)$
Replace "yes to do it.
|