The following code works on my machine but not in server:

using (ZipFile zipFile = ZipFile.Create(outPath))
{       
    if (!includeFolders)
    {
        zipFile.NameTransform = 
            new ZipNameTransform(Path.GetDirectoryName(fileNames[0]));
    }

    foreach (string Fil in fileNames)
    {
        zipFile.BeginUpdate();
        zipFile.Add(Fil.ToLower());
        zipFile.CommitUpdate();
    }
}

It creates an empty zip file and throws this exception:

Cannot access a disposed object. Object name: 'ZipFile'.

anyone else encountered this error? is there an alternative way or library to zip files without folders?

link|improve this question

80% accept rate
Have you got rights to the folder\file(s) you wan't to zip? Can you figure out which line results in an exception?(stacktrace) – rdkleine Jun 1 '10 at 10:26
yes, rights are ok. its quite a time before but i remember as ZipFile.Create is the problem. Im checking it. – Orkun Balkancı Jun 1 '10 at 10:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.