winzip

Batch file - Need an Alternative to 7-zip - cannot move

让人想犯罪 __ 提交于 2019-12-05 03:10:09
问题 Please see updated answer below Windows Batch files. I absolutely love 7-Zip and works great, but like WinZip's ability to move and timestamp files. However, WinZip's (command-line interface) has limitations for the size of files and the quantity of files within an archive, for example. Googling we do see that there is a person, who did take 7-zip's code and has re-compiled the code to use an -m (move) switch. However, I don't feel comfortable about using a third-party outside of the

How to ZIP specific files from a folder using Winzip command line?

一世执手 提交于 2019-12-04 20:04:47
With this command, I'm able to ZIP all files from the folders: wzzip.exe -a -p -r C:\DestinationPath\DataFiles_20130903.zip C:\SourcePath\*.* But, my folder has .dat,.bat,.txt,.xls files.I want to ZIP only .dat and .bat file.How to do this? Thanks. use this command (for the particular scenario in the question): wzzip.exe -a -p -r C:\DestinationPath\DataFiles_20130903.zip C:\SourcePath\*.dat C:\SourcePath\*.bat for more command line options for winZip refer to the following links: winZip command line Reference 1 winZip command line Reference 2 To provide multiple file names you can also use

zip command not working

ε祈祈猫儿з 提交于 2019-12-04 17:51:44
问题 I am trying to zip a file using shell script command. I am using following command: zip ./test/step1.zip $FILES where $FILES contain all the input files. But I am getting a warning as follows zip warning: name not matched: myfile.dat and one more thing I observed that the file which is at last in the list of files in a folder has the above warning and that file is not getting zipped. Can anyone explain me why this is happening? I am new to shell script world. 回答1: zip warning: name not

Creating a self-extracting zip archive on a linux box

喜欢而已 提交于 2019-11-30 13:28:23
Due to a number of constraints that I won't get into, I have to create a self-extracting ZIP archive on a linux box. The resulting archive should be executable on Windows only. Is this at all possible? If so, what tools would do the job? Background: when the user downloads a setup package from my linux box, I need that setup package to be pre-populated with a certain key. I only know that key at runtime; my idea was to write a simple .xml file with that key, then zip up the .msi installer with that xml file into a self-extracting archive, and send that file to the browser. If you have

How to decompress an AES-256 encrypted Zip file?

给你一囗甜甜゛ 提交于 2019-11-30 04:07:47
I am looking for a compression library to use in iPhone application supports decompressing AES 256-bit archives built in Winzip compression utility. Thanks. zlib is part of the iPhone sdk and is a well established and free option. If you're using Xcode you can add it to your project by: Right clicking on the Frameworks folder in your project (you can do it elsewhere but that's likely where you want to put it) Select add file Select existing frameworks Select libz.1.2.3.dylib Thank you very much for the help I finally ened up using ZipArchive library from: http://www.artpol-software.com I had

Unzip files (7-zip) via cmd command

倖福魔咒の 提交于 2019-11-29 20:20:22
I try to unzip a file via CMD. So I install winzip (and its plugin to cmd), winrar and 7-zip. But when I try to execute a command via the CMD: 7z e myzip.zip It gives the next error: 7z is not recognized as an internal or external command In addition, I added the folder of 7-z to the environment variables (Properties--> advanced --> Environment Variables --> user variable --> choose path, and add C:\Program Files\7-Zip What can be the reason? Doing the following in a command prompt works for me, also adding to my User environment variables worked fine as well: set PATH=%PATH%;C:\Program Files

Correctly decoding zip entry file names — CP437, UTF-8 or?

≡放荡痞女 提交于 2019-11-29 13:47:14
I recently wrote a zip file I/O library called zipzap , but I'm struggling with correctly decoding zip entry file names from arbitrary zip files. Now, the PKWARE spec states: D.1 The ZIP format has historically supported only the original IBM PC character encoding set, commonly referred to as IBM Code Page 437... D.2 If general purpose bit 11 is unset, the file name and comment should conform to the original ZIP character encoding. If general purpose bit 11 is set, the filename and comment must support The Unicode Standard, Version 4.1.0 or greater using the character encoding form defined by

Creating Compressed (Zipped) Folder using Delphi

蹲街弑〆低调 提交于 2019-11-29 08:36:30
问题 Can I create Windows XP's Compressed (Zipped) Folder using Delphi? 回答1: If you are using Delphi X2, just use TZipFile from System.Zip: To Zip a folder, use: TZipFile.ZipDirectoryContents('ZipFile.zip', 'C:\Zip\this\right\now'); To Zip files, use: Zip := TZipFile.Create; try Zip.Open('ZipFile.zip', zmWrite); Zip.Add('FileToBeZipped.txt'); Zip.Add('ThisWillBeCompressedAgainForSureAndBecomeSmaller.zip'); finally Zip.Free; end 回答2: According to a thread in eggheadcafe, you can use CreateFile

Unzip files (7-zip) via cmd command

蹲街弑〆低调 提交于 2019-11-28 16:26:31
问题 I try to unzip a file via CMD. So I install winzip (and its plugin to cmd), winrar and 7-zip. But when I try to execute a command via the CMD: 7z e myzip.zip It gives the next error: 7z is not recognized as an internal or external command In addition, I added the folder of 7-z to the environment variables (Properties--> advanced --> Environment Variables --> user variable --> choose path, and add C:\Program Files\7-Zip What can be the reason? 回答1: Doing the following in a command prompt works

Correctly decoding zip entry file names — CP437, UTF-8 or?

一曲冷凌霜 提交于 2019-11-28 07:20:45
问题 I recently wrote a zip file I/O library called zipzap, but I'm struggling with correctly decoding zip entry file names from arbitrary zip files. Now, the PKWARE spec states: D.1 The ZIP format has historically supported only the original IBM PC character encoding set, commonly referred to as IBM Code Page 437... D.2 If general purpose bit 11 is unset, the file name and comment should conform to the original ZIP character encoding. If general purpose bit 11 is set, the filename and comment