There are several ways of zipping files. One way I started was to copy the files in the folder into an already existing zip file using a vb script. This was going fine until we had the request to delete the files when the process is done. Unfortunately the zip process thought it was completed and so the delete could start which caused the files be removed before taking the chance to be zipped.
This small program is using a fast class for doing regular things like I wanted.
using System;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Checksums;
namespace ZipFolder
{
/// <summary>
/// This small program is a command line application that takes two parameters.
/// If you don't provide any parameter it will then show the syntax.
/// The aim of this class is to zip a folder with all its contents into a small zip file.
/// Notice that you can call it to zip the current folder but the destination may not be
/// within the source folder.
///
/// By Asghar Panahy
/// 25-oct-2007
///
/// </summary>
class Program
{
/// <summary>
/// Expects exactly zero or two parameters
/// </summary>
[STAThread]
static void Main(string[] args)
{
if (args.Length <2)
{
DumpSyntaxt();
return;
}
// Get the parameters
string fileName = args[0];
string path = args[1];
Console.Write(String.Format("Searching for files in {0}", path));
fZip.CreateZip(fileName, path, true, "");// Still need to figure out how
he filter works!?!?!
}
private static void DumpSyntaxt()
{
Console.WriteLine("Syntaxt: Zipper.exe <zipFile>
lt;FolderPath>");
Console.WriteLine("Exemple: Zipper.exe ..\test.zip . ");
}
}
}
2 comments:
nice
the filter is easy
zip.CreateZip("uranus.zip", "c:\\uranus", true, ".*\\.(jpg|jpeg|txt|bmp|png|gif|tiff)$");
Post a Comment