程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 微軟-用c# 寫的一個解壓文件的程序 解壓之後裡面的文件不見了 貼上代碼~

微軟-用c# 寫的一個解壓文件的程序 解壓之後裡面的文件不見了 貼上代碼~

編輯:編程綜合問答
用c# 寫的一個解壓文件的程序 解壓之後裡面的文件不見了 貼上代碼~
  string the_rar;
        RegistryKey the_Reg;
        object the_Obj;
        string the_Info;
        try
        {
            the_Reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe");
            the_Obj = the_Reg.GetValue("");
            the_rar = the_Obj.ToString();
            the_Reg.Close();
            if (Directory.Exists(unRarPatch) == false)
            {
                Directory.CreateDirectory(unRarPatch);
            }

            the_Info = "x " + rarPatch +"\\"+ rarName + " " + unRarPatch + " -y";
            ProcessStartInfo the_StartInfo = new ProcessStartInfo();
            the_StartInfo.FileName = the_rar;
            the_StartInfo.Arguments = the_Info;
            the_StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

            //獲取壓縮包路徑
            the_StartInfo.WorkingDirectory = rarPatch;
            Process the_Process = new Process();
            the_Process.StartInfo = the_StartInfo;
            the_Process.Start();
            the_Process.WaitForExit();
            the_Process.Close();

          new Normal_AdminlogsDAL().SaveMapServiceLog(unRarPatch + " ? " + rarPatch + " ? " + rarName );//Test  
          new Normal_AdminlogsDAL().SaveMapServiceLog(the_Info + " ? " + the_rar);//Test  
        }
        catch (Exception ex)
        {                
            new Normal_AdminlogsDAL().SaveMapServiceLog(" 解壓發生異常:" + ex.Message);
        }

最佳回答:


你這個不是寫了一個解壓文件,只是簡單調用了winrar,你看下你的參數對不對,先在命令行中運行下。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved