Tagged Questions
-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). ...
3
votes
2answers
78 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
1answer
93 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 ...
0
votes
1answer
79 views
Action<>,wait for a extra action to complete
here it is:
Action<int, ProgressBar, Label, Label, int, Button> downloadFileAsync = (i, pb, label2, label1, ServID, button1) =>
{
var bd = ...
0
votes
1answer
283 views
Extract files using 7z with vb2010 to %temp%
This is one of the revisions that i have tried. I couldn't quite figure out the 7zipsharp thing.
Dim Arg1 As String = "x"
Dim Zip As String = "apps\dat\sb.7z"
Dim path As String = ...
-1
votes
1answer
593 views
Integrating 7-zip library in to a C#.NET application [duplicate]
Possible Duplicate:
How do I create 7-Zip archives with .NET?
How can we integrate 7-zip archiving library in a C#.NET application. I am working on an application that need to have an ...
2
votes
2answers
2k views
7zip Self Extracting Archive (SFX) and .Net Installer
I am trying to create a self extracting archive for a windows application I have written. My app uses the latest .Net 4.0, and I want to include the .Net setup in the SFX installer. However, if the ...
0
votes
1answer
263 views
7-zip (7za.EXE) in C# to archive files of same name & store folder information
My software is supposed to collect files into a .zip or .7z archive using 7zip, but due to the nature of the software, there are a lot of files with the same name, but different directories like:
...
3
votes
3answers
687 views
using 7zip sdk to compress a file, but can not decompress using winrar or 7zip
I downloaded the SDK 7zip from here.
Then I used this code to compress a file to 7zip:
private static void CompressFileLZMA(string inFile, string outFile)
{
Encoder coder = new ...
1
vote
2answers
359 views
C#.NET - Compress Encrypted Files to 7z Format
I need to compress folder with files in .7z format.
I use SevenZip for it with class SevenZipCompressor.cs.
There are a method CompressFilesEncrypted(). How to compress folder with files?
Any help ...
0
votes
2answers
470 views
SevenZSharp Decode with password
I work with SevenZSharp from here
for Decode file I use:
CompressionEngine.Current.Decoder.DecodeIntoDirectory(@"D:\target\host_update.7z", @"D:\target");
But I don't have information how to ...
1
vote
3answers
2k views
extract 7zip in C# code
I need use 7zip in C#. Without console, just with 7zSharp.dll ?
+ I find some data here
http://7zsharp.codeplex.com/releases/view/10305 ,
but I don't know how to use it( - I could create .bat(.cmd) ...
2
votes
3answers
668 views
7z format compression [duplicate]
Possible Duplicate:
How do I create 7-Zip archives with .NET?
I'm looking for ways to do compression and decompression in 7z format via code in VB.NET and C#. Is there any library or .Net ...
2
votes
2answers
695 views
Why is compressed then uncompressed stream of different length
I'm using the SevenZipSharp library to compress and then uncompress a MemoryStream which contains a simple serialized object. However, the compressed and decompressed streams are of different length.
...
8
votes
1answer
381 views
Treating 7z files as .NET streams
I would like to chain multiple stream operations (like downloading a file, uncompressing it on the fly, and processing the data without any temp files). The files are in 7z format. There is a LZMA SDK ...
0
votes
3answers
606 views
7-Zip Problem for windows mobile
i am trying to build the 7zip code, which i can use in my windows mobile project..
does any one know how to build 7zip code and use the same in windows mobile application..
4
votes
2answers
2k views
API's to extract 7z files in .net
Is there any API available, that can be used in .net that can read/extract 7z files ?
2
votes
2answers
227 views
7z and file flush. Its not compressing my file
In encryptFile file if i change the if statement to true the code will work as expected. However i get console windows on screen which is ugly. When i make it false FileListName compress as empty ...
52
votes
5answers
23k views
How do I create 7-Zip archives with .NET?
How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.
Here are my results with the examples ...
4
votes
4answers
4k views
7-Zip (7za.dll) .NET wrapper
Is there some code or a library that lets me control the 7-Zip unpacking functionality from C# code?
