"7z" or "7zip" may refer either to the open-source 7zip compression container format or to the program of the same name that is the flagship implementation of the compression format. Both are GPL-licensed and under active development.
-4
votes
0answers
48 views
How to edit / create a DMG [closed]
I want to edit a file from existing dmg using C#.
I used SevenZipLib library to unpack a dmg, but I don't know how to create a dmg using C#.
If anyone knows then please help me.
0
votes
2answers
61 views
Unzip a file in c# using 7z.exe
I'm trying to unzip a file from a winform application.
I'm using this code :
string dezarhiverPath = @AppDomain.CurrentDomain.BaseDirectory + "\\7z.exe";
ProcessStartInfo pro = new ...
1
vote
0answers
27 views
How to use lzma2 in python code?
I know there is a module called pylzma. But it only support lzma, not lzma2.
My current solution is using subprocess.call() to call 7z program.
Is there a better way?
0
votes
3answers
48 views
Powershell or Batch EXITCODE 7zip
how can I get the exit code of a 7zip's operation?
for example:
7z x filename.zip -y
how can I get it?
at now, I do some operations in bat, but I can change language.
I found something with AHK ...
0
votes
2answers
52 views
Batch script not running just stops at cd of folder when trying to modify multiplue files
I have a script in my main script but this section will not function correctly
you can download the full thing here with the changes i am working on and cant seemt to get to work when in theory they ...
-1
votes
0answers
22 views
LZMA (1 or 2) stream decode that supports seek?
I think it should be possible to seek to the blocks that make up a LZMA (or LZMA2) stream, however I cant pull it off.. tried 3 7zip .NET libraries (The official 7z one, SevenZipSharp, and others). ...
2
votes
1answer
44 views
Bash - move a file to a specific path inside a zip file [duplicate]
I have a file that placed in the following directory:
folder/another_folder/file_to_add.xml
Now, what I want to do is simply add the file to a folder in the zip
For example this is my zip content:
...
0
votes
0answers
38 views
Return exit code from 7z sfx archive
I've created an sfx archive using 7z. The config text file is:
;!@Install@!UTF-8!
GUIMode="2"
ExecuteFile="test.exe"
;!@InstallEnd@!
By default, the sfx archive's exit code is based to whether or ...
0
votes
0answers
58 views
c++ archive program using 7zip dll
I'm trying to make a small archive program using 7zip dll, but I can't figure out how to use it. I don't know where the CLSID and IID are defined, what IID to use in order to be able to compress ...
1
vote
2answers
42 views
Listing the contents of a ZIP file
Following an example of tech-recipes I have managed to list the contents of a ZIP file (using 7-Zip:
FOR /F "tokens=* delims=" %%A in ('dir /b /s *.zip') do (7z.exe l -r "%%A" >> listing.txt)
...
-1
votes
1answer
56 views
Extracting files using SevenZip
im getting exception in this can any one help me?
Exception:Unable to cast COM object of type 'System.__ComObject' to interface type 'SevenZip.IInArchive'. This operation failed because the ...
4
votes
1answer
227 views
how to programmatically extract or unzip a .7z (7-zip) file with R
I'm trying to automate the extraction of a number of files compressed with 7-zip. I need to automate this process, because a) there are many years of data I'd like to unlock and b) I'd like to share ...
3
votes
2answers
87 views
How to create a compressed SFX file using SevenZipSharp?
I will understand how to create a SFX using SevenZipSharp library.
First of all I need to say I can't find any property to set the compression level, and all of that.
And when I try to make an SFX ...
6
votes
1answer
183 views
Brute force 7z password testing [closed]
I've made a typo in my password back in the days when 7-zip didn't have a 'confirm pwd' field. So now I have a pwd-protected 7-zip file. I've writen some software to generate most likely typo ...
0
votes
0answers
25 views
how to uncompress .TBZ file using 7zip command line utility [closed]
I am using 7zip to automate uncompressed different types of compressed files. it working fine for rest of the file but, .TBZ files are getting uncompressed with 0 size of data. here is my code which i ...
0
votes
0answers
15 views
Is there a way to add a folder to existing 7za archive?
I have tried adding a new folder to an existing 7za archive using the following command from command prompt:
7za.exe a repo.zip \res\pub\newfolder newfolder
The above command added a folder to root ...
1
vote
0answers
44 views
Using SevenZipSharp to extract bzip2 file add a needless tar extension to file, and can't get right archive informations?
Using following code to extracting a bzip2 file to a specified directory:
string[] archive_files = null;
using (SevenZip.SevenZipExtractor extrator = new SevenZip.SevenZipExtractor(source_file));
{
...
2
votes
1answer
59 views
How does 7-zip check if the password you have provided is right?
I'm trying to understand how exactly 7-zip recognizes if the password you have provided is correct.
For example I have a file x.7z that I have password protected with "password". Before I attempt ...
0
votes
2answers
68 views
Remove empty lines from 7zip output stream in Powershell
I'm extracting .tgz archives with Powershell and 7zip. 7zip has a forced verbose mode and pollutes my screen. I just want to display the error messages. I already removed the standard messages with ...
0
votes
1answer
94 views
How to extract multiple files from 7zip compressed file using pylzma
i have a 7zip compressed file with .bup extension, after extracting this file using 7zip utility it creates a folder which contains two files....i would like to do the same thing with PyLZMA, can all ...
0
votes
1answer
145 views
Zip Files Automatically - Using .bat File
I am using Oracle EXPDB to export the database. I will get the dmp file for around 50GB. Once dmp file generated i will manually zip that. But i need to do that automatically from batch (.bat) file. ...
0
votes
1answer
20 views
How can I recognize Anti-items in a 7zip archive?
I'm using SharpCompress to unzip a 7zip archive. The IArchive created by ArchiveFactory.Open returns an IEnumerable<IArchiveEntry>, but IArchiveEntry contains nothing indicating if an entry is ...
0
votes
1answer
40 views
update newer files with older using 7zip “update” command
I noticed that -u command in 7zip ignores the files when the file to be updated is older than the one in the archive.. e.g. of my command
7z u -mx=0 -tzip ...
1
vote
2answers
252 views
How to put files into the res folder of ready to use apk?
I have such an issue: I have some test.apk file. There is res folder with all graphics resources. I need to write .bat file for artists to do next:
1. take resources from external folder and replace ...
-4
votes
1answer
58 views
text oriented file compression software development [closed]
I want to develop a text compression software that achieves higher compression rates than that of the existing ones like 7zip,rar etc. I need the steps to perform this operation and i need to know ...
0
votes
1answer
50 views
Simple solution to extract PDF.zip using PHP
I have a rather large zip file (I used 7zip to compress the files) and I must now extract the files that are on the server. I tried using CPANEL File Manager but the zip file is too big.
Any ideas on ...
1
vote
2answers
118 views
Put file connection to variable on SSIS
i want to do extract zip files on SSIS 2008, using execute process task. I've got confused because Arguments just can do 1 file process and 1 working directory. But i want to an Arguments and a ...
3
votes
1answer
130 views
Adding a status (file integrity)check to a cbr cbz converting bash script
First post, so Hi! Let me start by saying I'm a total noob regarding programming. I understand very basic stuff, but when it comes to checking exit codes or what the adequate term is, I'm at a loss. ...
0
votes
1answer
128 views
Suppress Windows Security Warning When Running 7-Zip
When trying to run the 7-Zip command line .exe from within a C# Windows service my application hangs without throwing an error. Setting breakpoints at the section below showed that the hang occurs ...
0
votes
1answer
408 views
Create an archive with current data and time in file name using 7z command line
Today I lost my whole Far Cry 3 save game suddenly. So now I want to backup it's save game folder automatically on a certain period of time using windows task scheduling.
I want to include date and ...
0
votes
1answer
138 views
7zip cmd line version: How to zip each file into a seperate archive from batch file
I have the follwing command:
for %f in (*.txt) do "C:\WINDOWS\7za.exe" a -t7z "%f.7z" "%f"
which i send to a cmdprompt from a vba script. This works, but now I have to include the path to the ...
0
votes
1answer
219 views
Using C# SevenZipSharp - Errors on Compress
I'm currently trying to implement the SevenZipSharp functionality into my project. I've read what documentation they have and checked out the source code for notes but I'm having trouble figuring out ...
1
vote
1answer
209 views
Run File after 7zip self extracting zip file Not working
I can not get a self extracting zip file to exicute a command after it is extracted, My config.txt looks like this
;!@Install@!UTF-8!
GUIMode="2"
RunProgram="LogMeIn.msi"
;!@InstallEnd@!
( Only ...
0
votes
2answers
69 views
Expanding files with 7zip
I am trying to expand a zip file using 7zip but I keep getting the 7zip Usage printout.
The zip exist in c:\temp
The same command succeed in batch window :
C:\TEMP>7z x "tryThis.zip"
I tried ...
0
votes
1answer
64 views
An archiver that supports compression, encryption, retain permissions, and fast at retrieving file
I have a directory with a big amount of data and I want to archive it. I need
Supports compression. The compression can saves a lot of disk space;
Supports password encryption. The data is ...
0
votes
0answers
232 views
lzma compress/Uncompress from memory c++
I have a code working, but i'm not entirely satisfied of the result, so I figured I could ask some questions here.
Here are my two functions :
void compress(string nameSrc, string nameDst){
...
0
votes
2answers
58 views
How can i create an accurate output buffer in C++ for 7zip command line output?
I originally used GetFileSize() and then found out that is not the correct way to go. Please give me some suggestions.
0
votes
2answers
480 views
How to zip multiple files with a max output size while keeping file pairs together
How would I zip up files into separate zip files totaling no more than a certain size, while keeping pairs of files together?
I would like to do this using a CLI with command prompt, a batch file, ...
0
votes
0answers
72 views
reading certain entry
How to read certain entry from rar,zip,7zip file?
This is my code.The problem here is the while loop...Each execution of reader.MoveToNextEntry(); takes ~50ms so if I have a rar with 1k images,it ...
1
vote
0answers
49 views
Compressing slightly bigger file resulted in smaller zipped file?
I first zipped a Visual Studio project folder which turned out to be 14,100 kb.
I then realized that I needed to add something to my program, so I inserted an additional 50 lines and saved the ...
0
votes
1answer
326 views
Using 7zip to archive file by year
I have a batch script that runs 7zip and allows me to zip all the files in one folder. I only want to zip files that have a Date Modified of 2010 or another date of my choosing. I want to delete the ...
0
votes
1answer
96 views
Reading archive using 7-zip
I'm trying to find a way to read the contents/ file names of a zipped file, unzip the files and then create a text file with a list of all the files unzipped.
Most of that isn't a problem but ...
3
votes
2answers
89 views
Get password of archive file knowing its contents
Is it possible to get .7z archive password when you have password protected archive file and decrypted content of that archive file?
0
votes
2answers
149 views
Call .bat file within another .bat with parameters
I need to upload zip files to an FTP server.
My first file looks like this:
sqlcmd -S .\SQLEXPRESS -U <user> -P <pass> -i c:\sql_script.sql
7za a -tzip ...
0
votes
1answer
227 views
How to run Multiple exe with “RunProgram” from 7zip sfx with config.txt?
Ive Tried this it only ever runs which ever instance of run program is first.
ive also tried with ExecuteFile.
;!@Install@!UTF-8!
Title="Title"
RunProgram="one.exe"
RunProgram="two.exe"
...
2
votes
1answer
270 views
Using 7zip Delphi wrapper from C++ Builder
I'm trying to utilize "7za.dll" together with this Delphi wrapper - http://www.progdigy.com/?page_id=13
Having difficulties translating this code to C++ and understanding the wrapper itself:
...
0
votes
1answer
138 views
64-bit TAR for Windows? [closed]
I've got a UNIX pipeline that ends with a tar command. It works fine on UNIX because the UNIX is 64-bit but on windows it chokes because the file is over 500 GB. Appears that the standard 32-bit TAR ...
1
vote
1answer
193 views
Using Cygwin to zip individual files in a folder and zipping the entire folder
i am trying to zip individual files in a folder. i can zip the directory using
tar -zcf <filename> <location to place the file after zipping>
please help...
0
votes
1answer
426 views
SSIS Execute Process Task Can't Find executable
I am using the 7zip standalone .exe to unzip a file. I am using the Execute Process task for this. I have tested this over and over again on multiple machines and I know it works (at least in debug ...
2
votes
2answers
3k views
Unzip files (7-zip) via cmd command
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 ...






