c#解壓rar壓縮檔案(--**--測試通過)
using system;
using system.collections.generic;
using system.text;
using system.io;
using microsoft.win32;
using system.diagnostics;
namespace uni.unicustoms
the_info = "x " + 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();
}catch (exception ex)
return unrarpatch;}}
}rar引數:
一、壓縮命令
1、將temp.txt壓縮為temp.rarrar a temp.rar temp.txt
2、將當前目錄下所有檔案壓縮到temp.rarrar a temp.rar *.*
3、將當前目錄下所有檔案及其所有子目錄壓縮到temp.rarrar a temp.rar *.* -r
4、將當前目錄下所有檔案及其所有子目錄壓縮到temp.rar,並加上密碼123rar a temp.rar *.* -r -p123
二、解壓命令
1、將temp.rar解壓到c:\temp目錄rar e temp.rar c:\temprar e *.rar c:\temp(支援批量操作)
2、將temp.rar解壓到c:\temp目錄,並且解壓後的目錄結構和temp.rar中的目錄結構一
壓縮目錄test及其子目錄的檔案內容
wzzip test.zip test -r -p
winrar a test.rar test -r
刪除壓縮包中的*.txt檔案
wzzip test.zip *.txt -d
winrar d test.rar *.txt
重新整理壓縮包中的檔案,即新增已經存在於壓縮包中但更新的檔案
wzzip test.zip test -f
winrar f test.rar test
更新壓縮包中的檔案,即新增已經存在於壓縮包中但更新的檔案以及新檔案
wzzip test.zip test -u
winrar u test.rar test
移動檔案到壓縮包,即新增檔案到壓縮包後再刪除被壓縮的檔案
wzzip test.zip -r -p -m
winrar m test.rar test -r
新增全部 *.exe 檔案到壓縮檔案,但排除有 a或b
開頭名稱的檔案
wzzip test *.exe -xf*.* -xb*.*
winrar a test *.exe -xf*.* -xb*.*
加密碼進行壓縮
wzzip test.zip test
-s123。注意密碼是大小寫敏感的。在圖形介面下開啟帶密碼的壓縮檔案,會看到+號標記(附圖1)。
winrar a test.rar test -p123
-r。注意密碼是大小寫敏感的。在圖形介面下開啟帶密碼的壓縮檔案,會看到*號標記(附圖2)。
按名字排序、以簡要方式列表顯示壓縮包檔案
wzzip test.zip -vbn
rar l test.rar
鎖定壓縮包,即防止未來對壓縮包的任何修改
無對應命令
winrar k test.rar
建立360kb大小的分卷壓縮包
無對應命令
winrar a -v360 test
帶子目錄資訊解壓縮檔案
wzunzip test -d
winrar x test -r
不帶子目錄資訊解壓縮檔案
wzunzip test
winrar e test
解壓縮檔案到指定目錄,如果目錄不存在,自動建立
wzunzip test newfolder
winrar x test newfolder
解壓縮檔案並確認覆蓋檔案
wzunzip test -y
winrar x test -y
解壓縮特定檔案
wzunzip test *.txt
winrar x test *.txt
解壓縮現有檔案的更新檔案
wzunzip test -f
winrar x test -f
解壓縮現有檔案的更新檔案及新檔案
wzunzip test -n
winrar x test -u
批量解壓縮檔案
wzunzip *.zip
winrar e *.rar
c 呼叫winrar解壓
之前用登錄檔呼叫總是出錯,所以這裡直接使用winrar的絕對路徑 利用 winrar 進行解壓縮 檔案解壓路徑 絕對 將要解壓縮的 rar 檔案的存放目錄 絕對路徑 將要解壓縮的 rar 檔名 包括字尾 public void unrar string path,string rarpath,str...
C 呼叫WinRar解壓壓縮包
using system using system.collections.generic using system.text using system.io using microsoft.win32 using system.diagnostics namespace uni.unicustom...
C 實現壓縮與解壓縮方案
c 實現壓縮與解壓的方案有很多,比如以下幾種 1.ionic.zip 第三方 太老 不支援記憶體壓縮 網上有使用例子 2.sharpziplib和dotnetzip 第三方,一款比較經典實用c 壓縮類庫 3.ziparchive 和 zipfile net 4.5 system.io.compres...