WinRAR is a trialware file archiver utility for Windows.
Questions tagged [winrar]
257 questions
0
votes
2 answers
How do I extract one file from an archive using winrar?
I'd like to include a Process.Start line in my c# code that extracts a single file from an archive. In particular I'm looking for what the command line execution looks like.
I.E. I have an archive Test.rar which has the file picture.png as well as a…

fsnot
- 1
- 1
- 1
0
votes
1 answer
How to specify multiple file extension for making rar of a folder?
I'm using c# code for making .rar file of a folder.
Code
string zipFileToWrite, folderPath;
zipFileToWrite = @"D:\jack.zip";
folderPath = @"D:\New folder";
System.Diagnostics.Process MyProcess = new…

Ashish Rathore
- 2,546
- 9
- 55
- 91
0
votes
4 answers
Developing an Application for File Compression
How can I compress a file in c/c++? Since I want to devlop an application like WinZip / WinRAR.
A simpler one.

user189352
- 855
- 4
- 18
- 26
0
votes
1 answer
How do I zip files without compression using batch command
I am writing a batch file in order to make an .ear file. Here is my code snippet:
winrar.exe a -afzip -m5 -ed -pTest -r -ep1 %earName%.ear %extractDest%*
This code compresses the including files which I don't want. How can I just add the files in…

samme4life
- 1,143
- 2
- 14
- 20
0
votes
1 answer
Batch script to move compress and delete files
I have a batch script that does the following
@ECHO OFF
REM move files older than 2 days from the incoming directory to the incoming archive directory
robocopy D:\Agentrics\integration\download D:\Agentrics\integration\download\archive /MOV…

Mansoor Ahmad
- 11
- 2
- 4
0
votes
1 answer
Unicode characters in processes and winrar
I am using the code below to start a new process and archive files using winrar:
Private Function RunCmd(ParamArray commands As String()) As String
Dim returnvalue As String = String.Empty
Dim info As New ProcessStartInfo("cmd")
…

iasonas
- 55
- 7
0
votes
1 answer
Remove lines with identical extension inside every tag - Regular Expression
I create a Report List with Winrar. Inside this list i have a text list like this
Adventures of Shuggy
!Shuggy.png
!Sound Bank.txt
4.lwav
5.lwav
6.lwav
88.lwav
89.lwav
Adventures of Jack
90.lwav
91.lwav
92.lwav
93.lwav
!Sound…

user143822
- 237
- 2
- 9
0
votes
1 answer
Using Winrar CMD Examing structure
I have a bunch of rar files some of which contain just the file or files and some have A directory structure
i'd like to create a bat file that can extract the rar with the directory as is & if no directory use the rar file name to create a…

Holly
- 307
- 1
- 8
- 17
0
votes
1 answer
Archiving files through winrar but when ran its slow to load
I have 3.5gb files that I used winrar archive sfx whenn its done its shows size of exe that i archived is 1.5gb , when i run it it takes about 10-20 seconds to load, is there a way to make it run instantly when try to open it? . the reason i want to…

Ahmed H
- 21
- 1
- 2
- 5
0
votes
1 answer
uTorrent run program issue
Hi I have an Issue when trying to run a widows batch script from uTorrent when downloads are ready.
The script is really basic and will just unrar any rarfiles located in folder and create some log files.
The script works just fine when I run it in…

Emil Nolin
- 72
- 8
0
votes
2 answers
Batch command with WinRar
I have a folder with name is 'MainFolder'. Inside this folder I have a lot folders and files. But inside 'MainFolder' I have one special folder (name of this folder is 'ABC'), with couple *.aspx files. Also in this folder I have a lot other folders…

Smit
- 609
- 3
- 11
- 27
0
votes
1 answer
How to execute a bat file inside exe? (exe created using WinRAR sfx)
I want to create an exe file which includes mysql.msi and java.zip. I have written vbscript to install mysql and extract java file in C: drive. It works fine.
Now my problem is:
Convert the source folder as exe by using WinRAR sfx option.
How can…

Dhinakar
- 4,061
- 6
- 36
- 68
0
votes
1 answer
Compress folder with WinRar and move to another Directory vb.net
is there anyway to compress a folder to a .rar and move it to another directory? I have tried doing it from a vb.net application and by writing a batch file to do so but im not sure on the contents of the file. Can you help please?

user1244772
- 294
- 4
- 9
- 22
0
votes
2 answers
Self executable Jar File not executable after installing Winrar
Here's the deal, I've compiled a few classes into a jar file with a manifest pointing to the main-class. It works just fine on my computer.
I transferred the jar file onto another computer which I'm supposed to give a demonstration tomorrow on and…

user1418454
- 107
- 1
- 9
0
votes
1 answer
Extracting an ISO to a folder using WinZip/WinRar
I'm trying to extract an ISO using C#, I found a Winzip library, DotNetZip, and used that but when I run the project it says that it cannot extract the ISO.
string activeDir = copyTo = this.folderBD.SelectedPath;;
folderName =…

ELSheepO
- 305
- 3
- 9
- 26