Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
294 views

How does WinRAR perform a compression ratio check?

E.g. how can it tell that a 4GB text file can be compressed to, say, 200MB? Obviously, it doesn't read all of the contents in 2 or so seconds... so what kind of predictive algorithm(s) does it use?
4
votes
1answer
463 views

What compression format should we use; should we lay DEFLATE (.zip) to rest? [closed]

With most Linux distributions dropping gzip and bzip2 in favor of LZMA2 for compressing their packages, and many open source implementations for many platforms, I wonder: Shouldn't we lay DEFLATE and ...
2
votes
1answer
49 views

How can I call WinRar in Python on Windows?

Using the zipfile module I have created a script to extract my archived files, but the method is corrupting everything other than txt files. def unzip(zip): filelist = [] dumpfold ...
2
votes
2answers
759 views

Batch script to zip all the files without the parent folder

I wanted to create a batch file that can make a zip file from a folder that I put in the script. Here's my script: @REM ------- BEGIN xpi.bat ---------------- @setlocal @echo off set path="C:\Program ...
2
votes
2answers
287 views

Extract a JAR file, possibly with WINRAR on CL

I need to be able to extract jar files on the command line. Piece of cake, you might say. Yes, except I need the extractor to rename same-named files. To be specific, the Jar file has a file named: ...
2
votes
1answer
2k views

use winrar command line to create zip archives

I'm using the following winrar command line to create zip archives rar.exe a -df -ep -ag[yyyyMMddhhmmss] -ms[txt] C:\MyZipFile.zip C:\tmp\MyFiles*.txt The archives created are in RAR format instead of ...
2
votes
1answer
1k views

Batch file using WINRAR

i need help with batch file for WINRAR pleasee hi i am trying to use winrar to convert all my different folders individually from one location to another. example: c:\projects\test ...
2
votes
5answers
2k views

Excluding .svn directories with WinRar

I have a PowerShell script I use for creating distributions that copies compiled files from a few places and zips them up with winrar. In the script, I change to a directory containing the folders I ...
1
vote
0answers
76 views

Winrar SFX shortcut [closed]

I'm trying to automaticaly create an shortcut to an extracted jar-file using an sfx archive. I managed to create Desktop Icons Successfully, but it doesn't work properly. It is adding the target ...
1
vote
2answers
78 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
153 views

PSEXEC not redirecting 7zip output

I'm trying to use PSEXEC to uncompress a self extracting file (a console exe created with 7zip) in a remote machine and view the results on my screen. The remote command executes just fine, but I ...
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
118 views

Running SFX from Application: Change working directory

I have an application that starts an SFX (self-extracting executable) file and extracts it. The input file is located at c:\sfx\sfx.exe but it currently extracts to my application's start up folder ...
1
vote
2answers
731 views

Winrar sfx deletes files too early

I'm trying to build a sfx (self extracting archive) using winrar. I'm using VS2008 to build a setup.exe and a myapp.msi. If setup.exe is executed it does some checking an launches myapp.msi I'm ...
1
vote
2answers
772 views

Whats the file structure of a rar file compressed in store mode

I have many rars that a stored in store mode, that means they aren't compressed. I want to open them and read parts of the file that is "stored" in the rar. I think I can just open them if I knew the ...
1
vote
4answers
743 views

What is the command-line for rar and unrar?

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 ...
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
44 views

how to set a password on a rar file

I set a password on a rar file like this : rar.exe a backup.rar c:\files -p123 -p- -k this code set a password on my rar file and add file to it , but i do not know what is my password. this is my ...
0
votes
1answer
13 views

How do I set SFX option when creating one from the command line?

Here is my batch file command: set rar_path=C:\Program Files\WinRAR "%rar_path%\rar" a -sfx "MyArchive" Folder1 Folder2 File1.exe File2.exe How do I set the sfx creation options? Specifically I ...
0
votes
1answer
25 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
1answer
29 views

how can i schedule an automatic backup that requires stopping windows services [closed]

I was wondering if it's posible to create a schedule task in windows to stop one or more services such as SQL Express, compress several folders with winrar generating a file name based on the current ...
0
votes
2answers
47 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
0answers
80 views

VB - ProcessStartInfo() - detect when a warning message has been displayed

I'm working on a small VB application that will tie into an Android application. I need to be able to issue a command to unrar a file onto the machine that the VB app is running on, from the phone. ...
0
votes
2answers
135 views

How to sync many small files between two far away sites with limited slow network? Can I use git to accelerate this work?

How to sync many small files between two far away sites with limited slow network, and site B have old copy of site A. Can I use git to accelerate this work? Usually I like use winrar to add site A ...
0
votes
1answer
151 views

WinRar exit code different behavior in SP2/SP3 and 7

I am new to windows programming and have written a small utility with mingw which will unrar a package. The code is as provided below Descrition: When the below program is run, the results are as ...
0
votes
1answer
51 views

Problem in copy task

When I war a spring mvc project, the war file cannot be deployed to tomcat with ZipException oversubscribed literal/length tree. I find that when I open All files in WEB-INF/LIB/*.jar when I try to ...
0
votes
1answer
886 views

How can I create an auto-executing, Win-Rar SFX file from a batch file?

I have a 3rd-Party installer that I would like for my users to be able to download and run. The installer can take parameters that allows for a passive installation where the user can watch the ...
0
votes
2answers
185 views

Force opening and reading zip files from php

This may be a simple question or a pretty complex one, ill let you be the deciders. Using PHP To open a zip file, extract the files to a directory and close the zip file is not a complicated class to ...
0
votes
2answers
417 views

How do i make a script to unrar archives in multiple folders

Im not sure that this is supposed to be here but i didnt know where else to put it. I got around 90 rar archives all in different folders how can i extract them at once?
0
votes
1answer
363 views

How Can I Rar a File with a Unicode Name in Batch

I wrote a small batch file to rar all contents in all subfolders within a folder. It works fine except for that the file names should be in ASCII. Below is the working small code: @REM ------- BEGIN ...
0
votes
1answer
190 views

zip via php has different size as via winrar

i create one zip archive via php and another zip archive via winrar, but from the same files. size of two archives is different. the one via winrar is bigger (2 bytes). why ? thanks. OK NOW. zip ...
0
votes
2answers
419 views

How to extract a zip file and save files to folder and file name to database using PHP?

How to extract a zip file and save files to folder and file name to database using PHP?
0
votes
1answer
65 views

winrar not closing correctly?

I have this script that runs by a windows task scheduler once a week: for /f "delims==" %%D in ('DIR D:\scripts /A /B /S') do ( "C:\Program Files\WinRAR\WinRAR.EXE" a -agyyyy-MM-dd -r ...
0
votes
1answer
566 views

extract a rar file by c code [closed]

Possible Duplicate: opening a rar file by c I have to extract a rar file using c code. First I tried out to find the libraries. I got it from http://www.unrarlib.org/. But it was built in ...
0
votes
1answer
393 views

WinRar SFX automation

Is there a way to automatically add a file to an existing SFX achrive? I have created(with WinRar) Test.exe. I now want to add C:\test\Test.txt to Test.exe. is this possible?
0
votes
1answer
433 views

bat file using winrar taking too long to run

i have this scripts which extracts all my folder's and files from my c:\projects locations and put its in winrar and transfers them to c:\backup\project for /f "delims==" %%D in ('DIR C:\projects /A ...
0
votes
3answers
2k views

bat script to delete file older than 7 days

hi guys i have a bat script in which gets all files in a folder and then converts this folder with its contents into a one RAR file. This script also adds the current date once it makes a copy and ...
0
votes
3answers
361 views

How can I call winrar in perl on windows

Is it possible to call winrar through perl on a windows system, such as perl -e "rar a -rr10 -s c:\backups\backup.rar @backup.lst" If so, is there a more efficient way to do this? I've looked up ...
0
votes
1answer
801 views

get a list of files with winrar command line

I want to get a list of files and preferably uncompressed file size via winrar command line. How do i do this? and how do i do this with a password? From the doc it looks like i use -pPASSWORD