Compression in VB.Net

  • Thread starter Thread starter dotnet dev
  • Start date Start date
D

dotnet dev

Hi,

We used compressionplus for compressing our files while backups in VB5
world. Which software do you recommend for VB.Net apps.

Thanks a lot
dev
 
* dotnet dev said:
We used compressionplus for compressing our files while backups in VB5
world. Which software do you recommend for VB.Net apps.

Personally, I zip the files... ;-).
 
How do you do it. I am talking about being able to backup data on
client's machines in some way. Basically I want to provide a UI in my
vb.net app which my clients should be able to use to backup and restore
data.

So how do you zip it there.

Thanks for your reply.
 
* dotnet dev said:
How do you do it. I am talking about being able to backup data on
client's machines in some way. Basically I want to provide a UI in my
vb.net app which my clients should be able to use to backup and restore
data.

Mhm... I prefer using a CVS like SourceSafe or subversion to manage
versions in a team.
 
Thanks for the reply. I am not talking about source control. Imagine a
scenario where our software clients have few files (created by our
software for them) and they want to back them up. So we provide them
with some UI to enter the backup location, then we compress these files
and save them at that location. Basically a way to protect their data.

dev
 
* dotnet dev said:
Thanks for the reply. I am not talking about source control. Imagine a
scenario where our software clients have few files (created by our
software for them) and they want to back them up. So we provide them
with some UI to enter the backup location, then we compress these files
and save them at that location. Basically a way to protect their data.

Sorry, misunderstood your question. You could use SharpZiLib + password
to store the data:

<URL:http://www.icsharpcode.net/OpenSource/SharpZipLib/>
 
Thanks again for your reply. In my research I am seeing this
CSharpLib's mention a lot.. I will check it out. But is the
compression/zipping functionality not included in any .Net Framework
class library.. strange, isn't it.

Thanks
dev
 
Back
Top