vote up 0 vote down star

I have a problem when opening a zip file. I am using this code to zip the file:

public static string Zip_File(string soruce , string target)
        {
            try
            {
                byte[] bufferWrite;               
                using (FileStream fsSource = new FileStream(soruce, FileMode.Open, FileAccess.Read, FileShare.Read))
                {
                    bufferWrite = new byte[fsSource.Length];
                    fsSource.Read(bufferWrite, 0, bufferWrite.Length);
                    using (FileStream fsDest = new FileStream(target, FileMode.OpenOrCreate, FileAccess.Write))
                    {
                        using (GZipStream gzCompressed = new GZipStream(fsDest, CompressionMode.Compress, true))
                        {
                            gzCompressed.Write(bufferWrite, 0, bufferWrite.Length);
                            bufferWrite = null;
                            fsSource.Close();
                            gzCompressed.Close();
                            fsDest.Close();
                        }
                    }
                }
                return "success";
            }
            catch (Exception ex)
            {
                return ex.Message;
            }
        }

When I call this function am receiving "success" message, but I can't able to open the zip file.

ZipFiles.Zip_File(@"C:\Documents and Settings\ccspl\Desktop\IntegrityDVR.mdb", @"C:\Documents and Settings\ccspl\Desktop\a.zip")

This is my function call code:

the compressed(folder) is invalid or corrupted ...> this is error message which I have received

flag

48% accept rate

4 Answers

vote up 0 vote down

sample code for DotNetZip, an open source zip library.

public static string ZipFile(String source, String target)
{
    try 
    {
        using (ZipFile zip = new ZipFile()
        {
            zip.AddFile(source);
            zip.Save(target);
        }
        return "success";
    }
    catch {}
    return "failure";
}
link|flag
vote up 1 vote down

Why not use SharpZipLib? It makes this a lot easier.

link|flag
vote up 2 vote down

but, wait a minute, GZipStream doesn't create zip file, it creates gzip files as I know, Zipping files using GZipStream should help

link|flag
vote up 6 vote down

GZipStream does not create .zip files. It creates .gz files. If you need to create .zip files, you should use something like SharpZipLib.

link|flag
no Mehrdad ... my prob not yet solved... it's giving the same error msg – RV Aug 25 at 12:45
1  
RV: Of course it doesn't create .ZIP files. You need a program like 7-Zip to open .gz files. – Mehrdad Afshari Aug 25 at 12:46
Cheeso: I suggested Flush as a way to start troubleshooting. That was before I understood the OP didn't want Gzip at all; he wants Zip. – Mehrdad Afshari Oct 13 at 7:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.