Can I unzip files through the command line? Preferably using open source/free tools.
|
closed as off topic by BoltClock♦ Aug 9 '12 at 20:39
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You could use : http://membrane.com/synapse/library/pkunzip.html or 7zip: http://www.7-zip.org/download.html Free byte zip: http://www.freebyte.com/fbzip/ or infozip: http://infozip.sourceforge.net/ |
|||
|
|
|
If you already have java on your PC, and the bin directory is in your path (in most cases), you can use the command line:
or if not in your path:
Complete set of options for the jar tool available here. Examples:
|
|||||||||
|
|
There is an article on getting to the built-in Windows .ZIP file handling with VBscript here: http://www.aspfree.com/c/a/Windows-Scripting/Compressed-Folders-in-WSH/3/ (The last code blurb deals with extraction) |
|||
|
|
Grab an executable from info-zip.
|
|||
|
|
|
Thanks Rich, I will take note of that. So here is the script for my own solution. It requires no third party unzip tools. Include the script below at the start of the batch file to create the function, and then to call the function, the command is... cscript //B j_unzip.vbs zip_file_name_goes_here.zip Here is the script to add to the top...
REM Changing working folder back to current directory for Vista & 7 compatibility
%~d0
CD %~dp0
REM Folder changed
REM This script upzip's files...
> j_unzip.vbs ECHO '
>> j_unzip.vbs ECHO ' UnZip a file script
>> j_unzip.vbs ECHO '
>> j_unzip.vbs ECHO ' It's a mess, I know!!!
>> j_unzip.vbs ECHO '
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO ' Dim ArgObj, var1, var2
>> j_unzip.vbs ECHO Set ArgObj = WScript.Arguments
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO If (Wscript.Arguments.Count ^> 0) Then
>> j_unzip.vbs ECHO. var1 = ArgObj(0)
>> j_unzip.vbs ECHO Else
>> j_unzip.vbs ECHO. var1 = ""
>> j_unzip.vbs ECHO End if
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO If var1 = "" then
>> j_unzip.vbs ECHO. strFileZIP = "example.zip"
>> j_unzip.vbs ECHO Else
>> j_unzip.vbs ECHO. strFileZIP = var1
>> j_unzip.vbs ECHO End if
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO 'The location of the zip file.
>> j_unzip.vbs ECHO REM Set WshShell = CreateObject("Wscript.Shell")
>> j_unzip.vbs ECHO REM CurDir = WshShell.ExpandEnvironmentStrings("%%cd%%")
>> j_unzip.vbs ECHO Dim sCurPath
>> j_unzip.vbs ECHO sCurPath = CreateObject("Scripting.FileSystemObject").GetAbsolutePathName(".")
>> j_unzip.vbs ECHO strZipFile = sCurPath ^& "\" ^& strFileZIP
>> j_unzip.vbs ECHO 'The folder the contents should be extracted to.
>> j_unzip.vbs ECHO outFolder = sCurPath ^& "\"
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO. WScript.Echo ( "Extracting file " ^& strFileZIP)
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO Set objShell = CreateObject( "Shell.Application" )
>> j_unzip.vbs ECHO Set objSource = objShell.NameSpace(strZipFile).Items()
>> j_unzip.vbs ECHO Set objTarget = objShell.NameSpace(outFolder)
>> j_unzip.vbs ECHO intOptions = 256
>> j_unzip.vbs ECHO objTarget.CopyHere objSource, intOptions
>> j_unzip.vbs ECHO.
>> j_unzip.vbs ECHO. WScrip.Echo ( "Extracted." )
>> j_unzip.vbs ECHO.
|
|||
|
|
|
As other have alluded, 7-zip is great. My contribution: Get the 7-Zip Command Line Version Current URL http://www.7-zip.org/download.html The syntax? You can put the following into a .bat file
I've shown a few options. -r is recursive. Usually what you want with zip functionality. a is for "archive". That's the name of the output zip file. -p is for a password (optional) -w is a the source directory. This will nest your files correctly in the zip file, without extra folder information. -mem is the encryption strength. There are others. But the above will get you running. NOTE: Adding a password will make the zip file unfriendly when it comes to viewing the file through Windows Explorer. The client may need their own copy of 7-zip (or winzip or other) to view the contents of the file. EDIT::::::::::::(just extra stuff). There is a "command line" version which is probably better suited for this: http://www.7-zip.org/download.html (current (at time of writing) direct link) http://sourceforge.net/projects/sevenzip/files/7-Zip/9.20/7za920.zip/download So it would be (with the command line version of the 7 zip tool).
|
||||
|
|
Firstly, write an unzip utility using vbscript to trigger the native unzip functionality in Windows. Then pipe out the script from within your batch file and then call it. Then it's as good as stand alone. I've done it in the past for numerous tasks. This way it does not require need of third party applications, just the one batch file that does everything. I put an example on my blog on how to unzip a file using a batch file here... enter link description here |
|||||
|
|
Copy the below code to a batch file and execute. Below requires Winzip to be installed/accessible from your machine. Do change variables as per your need.
|
||||
|
|
|
Originally ZIP files were created with MS-DOS command line software from PKWare, the two programs were PKZIP.EXE and PKUNZIP.EXE. I think you can still download PKUNZIP at the PKWare site here: http://www.pkware.com/software-pkzip/dos-compression The actual command line could look something like this:
|
||||
|
|
