码迷,mamicode.com
首页 > 其他好文 > 详细

c# 解压文件

时间:2014-05-07 20:35:48      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   class   code   java   

bubuko.com,布布扣
  public bool UnRAR(string destPath, string rarfilePath)
        {
            try
            {
                // destPath = @"E:\youxiaodi\temp"; //目标位置
                // rarfilePath = @"E:\youxiaodi\temp\gif.rar"; //被解压文件
                //组合出需要shell的完整格式
                string shellArguments = string.Format("x -o+ \"{0}\" \"{1}\\\"",
                    rarfilePath, destPath);
                //用Process调用
                using (Process unrar = new Process())
                {
                    unrar.StartInfo.FileName = @"C:\Program Files\WinRAR\UnRAR.exe";
                    unrar.StartInfo.Arguments = shellArguments;
                    //隐藏rar本身的窗口
                    unrar.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                    unrar.Start();
                    //等待解压完成
                    unrar.WaitForExit();
                    unrar.Close();
                }
            }
            catch (Exception ex)
            {
                return false;
            }
            return true;
        }
bubuko.com,布布扣

 

c# 解压文件,布布扣,bubuko.com

c# 解压文件

标签:des   style   blog   class   code   java   

原文地址:http://www.cnblogs.com/pigddyou/p/3714157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!