コード例 #1
0
ファイル: ZipArchive.cs プロジェクト: Gayo/Gayo-CAROT
 public ZipArchiveStream(zip.ZipFile zf, zip.ZipEntry ze)
 {
     this.zis = zf.GetInputStream(ze);
     this.length = ze.Size;
     this.zf = zf;
     this.ze = ze;
 }
コード例 #2
0
ファイル: ZipArchive.cs プロジェクト: Gayo/Gayo-CAROT
 public static bool check(string fname)
 {
     zip.ZipFile zf;
     try {
         zf = new zip.ZipFile(fname);
     } catch(Exception) { return false; }
     zf.Close();
     return true;
 }
コード例 #3
0
ファイル: ZipArchive.cs プロジェクト: Gayo/Gayo-CAROT
 public ZipArchive(string fname)
 {
     zf = new zip.ZipFile(fname);
 }