0

Okay here it goes, I want to Zip up files from several IP's, to my local machine. This for a development tool that I am creating, this tools so far can upload files from My local machine to 20 IP's, now this functionality is new and is the other way around and I want to know a way of zipping up files and saving on my machine. Any documents, articles, resources and code snippets to show how to go about it can be helpful. I am still using .Net 2.0 and No third part lib...

Thanks, HRG

Security Hound
  • 2,577
  • 3
  • 25
  • 42
gaganHR
  • 337
  • 2
  • 7
  • 19
  • If you are using .NET 3.5 you can use built-in: http://stackoverflow.com/questions/940582/how-do-i-zip-a-file-in-c-using-no-3rd-party-apis – Sascha Jun 19 '12 at 13:15
  • @Sascha: I am still using .Net 2.0 :( I have heard about ZipPackage, K will edit this info in my question. Thanks – gaganHR Jun 19 '12 at 13:36
  • .NET has a built-in feature to zip files. You should use that. – Security Hound Jun 19 '12 at 13:45

1 Answers1

2

Please look here : http://www.icsharpcode.net/opensource/sharpziplib/

Or if you can use .NET 4.5 RC you have Zip functionality included.

Jason De Oliveira
  • 1,732
  • 9
  • 16