检查ZIP内文件个数

来源:互联网 发布:格林奶奶的睡美人知乎 编辑:程序博客网 时间:2024/06/11 21:48






        private int FileInZipCount(string strAimPath)
        {
            int iNew = 0;
            ZipEntry zipEntry_ = null;
            FileStream fsFile_ = null;
            ZipFile zipFile_ = null;
            try
            {
                fsFile_ = new FileStream(strAimPath, FileMode.OpenOrCreate);
                zipFile_ = new ICSharpCode.SharpZipLib.Zip.ZipFile(fsFile_);
                long l_New = zipFile_.Count;
                iNew = Convert.ToInt32(l_New);
                return iNew;
            }
            catch (Exception ex)
            {
            
                writelog(ex.ToString());
                return 0;
            }
            finally
            {
                if (zipFile_ != null)
                {
                    if (zipFile_.IsUpdating)
                        zipFile_.CommitUpdate();
                    zipFile_.Close();
                }
                if (fsFile_ != null)
                    fsFile_.Close();
                if (zipEntry_ != null)
                    zipEntry_ = null;
            }
        }



原创粉丝点击