Tagged Questions
0
votes
0answers
55 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 ...
3
votes
2answers
98 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
0answers
75 views
c# Append file to Existing .rar
I'm looking at appending a single file to an existing .rar file. I am currently using sevenzipshap to read the .rar.
But i cant find any documentation on their site about adding a file to an existing ...
3
votes
1answer
841 views
C++ using 7zip.dll
I'm developing an app which will need to work with different types of archives. As much of archive types as good. I have choosen a 7zip.dll as an engine of archive-worker. But there is a problem, does ...
0
votes
3answers
646 views
c# create 7z archive, then Can not open file “name.7z” as an archive
I am trying to zip some folders. They have different paths, will not belong to the same directory.
I tested the command line arguments that I would give, and it works, but I can't get it to work ...
1
vote
1answer
259 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 ...
1
vote
1answer
206 views
7Zip add encryption to files
I have a .7z archive that I manage using 7zFM (File Manager) and I can easily add objects to this archive. However the objects in the archive are encrypted with AES like I want them to be, but when I ...
0
votes
2answers
1k views
Example of how to use PyLZMA
I want to use PyLZMA to extract a file from an archive (e.g. test.7z) and extract it to the same directory.
I'm a newbie to Python and have no idea how to start. I've done some googling and found ...
0
votes
0answers
189 views
using LzmaCompress to make an archive
I'm a lil bit confused with compression methods.
I do know how to use this function, and it does output a tinier buffer, but how do I make
an archive using the 7zip sdk, with the compressed data?
i'm ...
5
votes
6answers
5k views
Any good tool for browsing archives(Ear,War, Jar) on OSX
On Linux i can use file-roller and open an browse the content of an EAR file without manually open it, can even dig into contained WAR file and within that JAR files quickly.
This is another of those ...
2
votes
6answers
959 views
detecting if a file is an archive using 7zip
I would like to use SevenZipSharp in order to determine if a file is an archive. I know that it's possible because in explorer if I rename a .zip to .bmp, 7zip still recognises it as an archive.
...
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 ...
1
vote
2answers
2k views
C#: Archiving a File into Parts of 100MB
In my application, the user selects a big file (>100 mb) on their drive. I wish for the program to then take the file that was selected and chop it up into archived parts that are 100 mb or less. How ...
5
votes
4answers
7k views
programmatically extract tar.gz in a single step (on windows with 7zip)
PROBLEM: I would like to be able to extract tar.gz files in a single step. This makes my question almost identical to this one: stackoverflow question for tar-gz.
My question is almost the same, but ...