• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

C#调用动态unlha32.dll解压Lha后缀的打包文件分享

asp 搞代码 4年前 (2022-01-03) 32次浏览 已收录 0个评论

这篇文章介绍了,C#调用动态unlha32.dll解压Lha后缀的打包文件,有需要的朋友可以参考一下

代码如下:
public class LhaUtity
    {
        ///取得DLL的版本
        [DllImport(“unlha32”)]
        private static extern UInt16 UnlhaGetVersion();

        ///

        /// ‘取得DLL的执行情况
        ///

        /// 是否成功
        [DllImport(“unlha32”)]
        private static extern  Boolean UnlhaGetRunning();

        ///

        /// ‘文件检查
        ///

        ///
        ///
        ///
        [DllImport(“unlha32”)]
        private static extern Boolean UnlhaCheckArchive(String szFileName, Int32 iMode);

        ///

        /// 文件解压缩
        ///

        ///
        ///
        ///
        ///
        ///
        [DllImport(“unlha32”)]
        private static extern int Unlha(int hwnd, string szCmdLine, string szOutput, int dwSize);

        ///

        /// 需要解压的文件
        ///

        /// 解压文件路径
        /// 解压到路径
        /// 是否删除
        public static bool UnCompress(string archiveFile, string extractDir,bool  isDeleteFile)
        {
            string extractFullPath = string.Empty;
            string startPath = AppDomain.CurrentDomain.BaseDirectory;

            if (!System.IO.File.Exists(archiveFile))
            {
                //判断需要解压的文件存不存
                throw new Exception(string.Format(“需要解压的{0}不存在”, archiveFile));
            }

            try
            {
                UInt16 ver = LhaUtity.UnlhaGetVersion();
            }
            catch (Exception ex)
            {
                throw new Exception(“没找到Unlha32.dll文件”);
            }

            if (UnlhaGetRunning())
            {
                throw new Exception(“DLL正在执行”);
            }

            if (!UnlhaCheckArchive(archiveFile, 0))
            {
                throw new Exception(“文件不能被解压缩”);
            }

            //解压的路径
            if (string.IsNullOrEmpty(extractDir))
            {
                extractFullPath =string.Format(@”{0}{1}\”, star来源gao.dai.ma.com搞@代*码网tPath,archiveFile.Substring(archiveFile.LastIndexOf(“\\”)+1,archiveFile.IndexOf(“.lha”)-1-archiveFile.LastIndexOf(“\\”)));
            }
            else
            {
                extractFullPath = extractDir;
            }

            if (!System.IO.Directory.Exists(extractFullPath))
            {
                System.IO.Directory.CreateDirectory(extractFullPath);
            }
              

            int ret = Unlha(0, string.Format(“x \”{0}\” \”{1}\””, archiveFile, extractFullPath), null, 0);

            if (ret != 0)
            {

                if (ret == 32800)
                {
                    throw new Exception(“文件解压缩取消”);
                }
                else
                {
                    throw new Exception(“文件解压缩异常结束”);

                }

            }
            else
            {
                if (isDeleteFile)
                {
                    System.IO.File.Delete(archiveFile);
                }

                return true;
            }

        }

}

以上就是C#调用动态unlha32.dll解压Lha后缀的打包文件分享的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:C#调用动态unlha32.dll解压Lha后缀的打包文件分享

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址