C#ZIP根据路径读取压缩包内文件数量


 /// <summary>
        /// 根据压缩包路径读取此压缩包内文件个数
        /// </summary>
        /// <param name="strAimPath"></param>
        /// <returns></returns>
        private int FileInZipCount(string strAimPath)
        {
            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)
            {
                ErrorLog.WriteError(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;
            }
        }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM