"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
2answers
4k views
7zip command line self extractor not asking for path
I've created my self extracting .exe file from 7zip command line using the
7z a -sfx <name.exe> <filelist...>
commands but when I run this from windows explorer it does not ask me for ...
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 ...
2
votes
2answers
244 views
zipping files with the same name in different folders using 7z @listfile feature
I want to create a 7zip file containing files with the same names but in different folders using 7zip's @listfile feature. Although I have used 7zip CLI for a long time, I just cannot find the syntax ...
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 ...
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). ...
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 ...
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:
...
2
votes
1answer
3k views
how to execute 7zip commands from python script
I am trying to get a basic idea of how the os.system module can be used to execute 7zip commands. For now I don't want to complicate things with Popen or subprocess. I have installed 7zip and copied ...
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 ...
4
votes
1answer
12k views
How to unzip a 7zip archive in Android?
The problem is probably quite simple for some of you:
I have a 7zip archive which contains some hundred files separated into different directories. The target is to download it from a FTP server and ...
0
votes
0answers
59 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
58 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 ...
0
votes
1answer
3k views
Creating a batch file to back up a specified folder
I am actually pretty new to this batch file thing. I know it's important to know at least the basic commands. How do I do the following?
Zipping a specified folder.
Move the folder to another place.
...
1
vote
1answer
252 views
SevenZipSharp append an encrypted archive
I'm using seven zip sharp and am having issues trying to add a file to an encrypted archive.
Appending to a non-encrypted archive (with appropriate methods) seems to work, but an encrypted archive ...
4
votes
1answer
229 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 ...
6
votes
1answer
185 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 ...
0
votes
2answers
329 views
Launching a command line application that launches another command line application never responds
When I run the following command from command line, I can run 7-zip as a remote user and extract a file to a network share:
C:\PsExec.exe -u username -p password "C:\7z.exe" x -y ...
4
votes
5answers
6k views
7-Zip command-line switch [closed]
Is there a 7-Zip command-line switch that prevents the filenames from echoing to the screen as they are added to the archive?
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));
{
...
1
vote
2answers
3k views
Retrieve an error of 7-zip when running a batch file
I have a batch file in which I execute the following line to list the contents of an archive:
"\Program Files\7-Zip\7z.exe" l "\Backup Google Docs.7z"
The archive is intentionally corrupted.
...
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 ...
2
votes
2answers
1k views
Compressing & Decompressing 7z file in java
I want to compress a file into zip, rar and 7z format using java code. Also I want to decompress these files at a specified location.
Can anyone please tell me how to compress and decompress files ...
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 ...
2
votes
1answer
246 views
J7zip on Android - Extracting From an Archive and Listing Contents
My previous question got closed as not constructive. I edited it there, but didn't see that it was closed ):
I'm writing an application that involves extracting 7z archives. There doesn't seem to be ...
0
votes
1answer
146 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 ...
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 ...
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
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
410 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 ...
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 ...
1
vote
2answers
842 views
7-Zip throws an error in SSIS 2012
I have the following problem:
I use 7-Zip in my SSIS 2012 package.
So I created the Execute Process task and put there:
WorkingDirectory: C:\Program Files\7-Zip\ (it's correct, double checked it)
...
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
233 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
483 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
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 ...






