I want to compress a file and a directory in C#. I found some solution in Internet but they are so complex and I couldn't run them in my project. Can anybody suggest me a clear and effective solution?
Thank you,
|
I want to compress a file and a directory in C#. I found some solution in Internet but they are so complex and I couldn't run them in my project. Can anybody suggest me a clear and effective solution? Thank you, |
|||||||||||||
|
|
You could use
|
|||||||||||||
|
|
There is a built-in class in http://msdn.microsoft.com/en-us/library/system.io.packaging.zippackage(v=vs.100).aspx |
|||||
|
|
|
|||
|
Use http://dotnetzip.codeplex.com/ to ZIP files or directory, there is no builtin class to do it directly in .NET |
|||
|
|
Source code taken from MSDN that is compatible to .Net 2.0 and above
|
|||||||||
|
|
You can just use ms-dos command line program compact.exe. Look on a parameters compact.exe in cmd and start this process using .NET method Process.Start(). |
|||
|
|
|
I'm adding this answer as I've found an easier way than any of the existing answers:
Code:
If you don't want the original folder structure mirrored in the original zip file, then look at the overrides for AddFile() and AddFolder() etc. |
|||
|
|