Ejemplo n.º 1
0
 public static bool check(string fname)
 {
     zip.ZipFile zf;
     try {
         zf = new zip.ZipFile(fname);
     } catch(Exception) { return false; }
     zf.Close();
     return true;
 }