![]() |
Create zip file using C# Is there any program in C# to create zip file. I want to write an application in C# .NET 2.0 that allow user to use zip file. The zip file created must able to read any files from archives into memory and create new file. Any recommendations and suggestions are appreciated. |
Re: Create zip file using C# Code: private void zip(string[] args) |
Re: Create zip file using C# Here is program to create zip file in C#.net : Code: FileStream sourceFile = File.OpenRead(@"C:\zip.xml"); |
Re: Create zip file using C# Code: private void ZipFiles(String[] Files, String Output) |
All times are GMT +5.5. The time now is 10:08 PM. |