Questions tagged [unrar]

Unrar is the name of two different command-line applications for extracting RAR archives.

Unrar is the name of two different command-line applications for extracting RAR archives.

RARLAB UnRAR
This version of UnRAR is distributed by RARLAB, the makers of the commercial WinRAR archivers. It can extract newer RAR3 archives not supported by GNA's version.

GNA UnRAR
This free software version of UnRAR is based on an old version of RARLAB's UnRAR with permission from author Eugene Roshal. It is licensed under the GPL. It does not support the RAR3 format.

108 questions
27
votes
5 answers

How can unrar a file with python

I can to unzip a file if file is a .zip and unrar file if my file type is .rar. How i can do this work with python 2.7?
2 8
  • 4,951
  • 15
  • 52
  • 96
16
votes
4 answers

How to extract ZIP files 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"; p.StartInfo.Arguments = string.Format("x -o- {2} \"{0}\" *…
user34537
10
votes
2 answers

Unrar all file in directory without prompting

I tried: find . -name "*.rar" -exec unrar x -o {} \; Output: Extracting from ./setup.part2.rar Extracting from ./setup.part1.rar RORY/nsfw.zip already exists. Overwrite it ? [Y]es, [N]o, [A]ll, n[E]ver, [R]ename, [Q]uit A I can't have this…
Rory Zipher
  • 185
  • 1
  • 1
  • 9
9
votes
1 answer

Ansible apt build-dep: "No package matching ..."

I'm installing unrar-nonfree on Raspbian based on How to install unrar-nonfree? (raspberrypi.stackexchange.com) but using Ansible. I successfully added the apt repository using ansibles: apt_repository which updates the cache (default) when there is…
Leonel Galán
  • 6,230
  • 2
  • 34
  • 56
7
votes
3 answers

RAR a folder without persisting the full path

1) I have a folder called CCBuilds containing couple of files in this path: E:\Testing\Builds\CCBuilds. 2) I have written C# code (Process.Start) to Rar this folder and save it in E:\Testing\Builds\CCBuilds.rar using the following…
Ramya
  • 657
  • 2
  • 8
  • 12
7
votes
3 answers

Is there an unrar library out there for iOS?

I want to include an unrar files option in my iphone app. I have already tried https://github.com/ararog/Unrar4iOS but this library is not complete (some functions are not yet implemented like -(BOOL) unrarFileTo:(NSString*)path…
Alex1987
  • 8,819
  • 14
  • 66
  • 90
7
votes
3 answers

Using unrar library - extracting files into a filestream buffer

What I need is to be able to extract the files in a .rar file into streams. I'm creating a test case to get a sense of how to use unrar source. I've been searching and tinkering for a while, but I can't figure out how to use the library. I'm…
Kache
  • 11,723
  • 10
  • 47
  • 71
6
votes
2 answers

How to set path to unrar library in Python?

I am using Pycharm as my IDE (Python 3.7) and am trying to extract a password protected .rar file (I know the password) and have imported rarfile from unrar but am getting this error "LookupError: Couldn't find path to unrar library." I also…
5
votes
1 answer

RAR password recovery on GPU using ATI Stream processor

I'm newbie in GPU programming , and i work on brute force RAR Password Recovery on ATI Stream Processor using brook+ language, but i see that the kernel written in brook+ language doesn't allow any calling to normal functions (except kernel…
Wajdy Essam
  • 3,990
  • 1
  • 26
  • 31
4
votes
3 answers

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, on example, UnRAR2 for python I can extract the…
Matteo Monti
  • 6,982
  • 15
  • 52
  • 99
4
votes
1 answer

bash script optimization file rename

i am a total noob, but i figured out this script for doing the following: I have a folder called "unrar" in there are subfolders with unknown foldername with rar file inside. Now i enter unknownsubfolder, find rar file and unrar it in…
wombat
  • 73
  • 7
4
votes
1 answer

Is Resource Adapter Archive (RAR) the same as Roshal ARchive (RAR)?

Are they both referring to the same thing? Are they related at all? Resource Adapter Archive (RAR) according to Oracle is: Resource Adapter Archive (RAR): A RAR file holds a resource adapter. Defined by the J2EE Connector Architecture…
M. A. Kishawy
  • 4,865
  • 10
  • 43
  • 72
3
votes
1 answer

UnRARing files in Python in OSX

This is driving me nuts, I've looked at & tried a number of the answers here for solving this problem but nothing is working out so far. The basic problem is that I have some 1300+ rar files that I'd like to extract and keep somewhat organized, and…
PixelThis
  • 31
  • 2
3
votes
2 answers

How to know which rar is first in multi rar archives using SevenZipSharp/Unrar in C#?

I am trying to use SevenZipSharp or/and Unrar library in C# WinForms .NET 3.5. I have this problem with multi rar archives that have diffrent naming for example: .rar, r01, r02, r03 and so on (this is easy) somefile01.rar, somefile02.rar,…
MadBoy
  • 10,213
  • 18
  • 88
  • 146
3
votes
1 answer

UNRAR in javascript

is there a library to unRAR files? The rar files I have to work with contain multiple files. I'm looking for a way to navigate rar content, and get a blob with the uncompressed content of a selected file within the .rar one. I'm already using…
Alejandro Silvestri
  • 3,488
  • 27
  • 40
1
2 3 4 5 6 7 8