資源描述:
《c#在線(xiàn)壓縮與解壓》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、C#在線(xiàn)壓縮與解壓usingSystem.IO;usingMicrosoft.Win32;usingSystem.Diagnostics;/******************************************************程序用途:實(shí)現(xiàn)文件[文件夾]壓縮解壓功能函數(shù)程序備注:*服務(wù)器端WinRAR支持*路徑簡(jiǎn)述必須絕對(duì)路徑******************************************************/2.主要代碼之壓縮//////壓縮文
2、件//////需要壓縮的文件夾或者單個(gè)文件///生成壓縮文件的文件名///生成壓縮文件保存路徑///protectedboolRAR(stringDFilePath,stringDRARName,stringDRARPath){Stringthe_rar;RegistryK
3、eythe_Reg;Objectthe_Obj;Stringthe_Info;ProcessStartInfothe_StartInfo;Processthe_Process;try{the_Reg=Registry.ClassesRoot.OpenSubKey(@"ApplicationsWinRAR.exeShellOpenCommand");the_Obj=the_Reg.GetValue("");the_rar=the_Obj.ToString();the_Reg.Close();the_ra
4、r=the_rar.Substring(1,the_rar.Length-7);the_Info="a"+""+DRARName+""+DFilePath;//命令+壓縮后文件名+被壓縮的文件或者路徑the_StartInfo=newProcessStartInfo();the_StartInfo.FileName=the_rar;the_StartInfo.Arguments=the_Info;the_StartInfo.WindowStyle=ProcessWindowStyle.Hidden;the_S
5、tartInfo.WorkingDirectory=DRARPath;//RaR文件的存放目錄。the_Process=newProcess();the_Process.StartInfo=the_StartInfo;the_Process.Start();returntrue;}catch(Exceptionex){returnfalse;}}3.主要代碼之解壓//////解壓縮到指定文件夾//////壓縮文件存在的目錄
6、///壓縮文件名稱(chēng)///解壓到文件夾///protectedboolUnRAR(stringRARFilePath,stringRARFileName,stringUnRARFilePath){//解壓縮Stringthe_rar;RegistryKeythe_Reg;Objectthe_Obj;Stringthe_Inf
7、o;ProcessStartInfothe_StartInfo;Processthe_Process;try{the_Reg=Registry.ClassesRoot.OpenSubKey(@"ApplicationsWinRar.exeShellOpenCommand");the_Obj=the_Reg.GetValue("");the_rar=the_Obj.ToString();the_Reg.Close();the_rar=the_rar.Substring(1,the_rar.Length-
8、7);the_Info=@"X"+""+RARFilePath+RARFileName+""+UnRARFilePath;the_StartInfo=newProcessStartInfo();the_StartInfo.FileName=the_rar;the_StartInfo.Arguments=the_Info;the_StartInfo.WindowStyle=ProcessWindowS