中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在C#中壓縮和解壓rar、zip文件

發布時間:2021-05-10 15:50:26 來源:億速云 閱讀:395 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關如何在C#中壓縮和解壓rar、zip文件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

在C#.NET中壓縮解壓rar文件

rar格式是一種具有專利文件的壓縮格式,是一種商業壓縮格式,不開源,對解碼算法是公開的,但壓縮算法是私有的,需要付費,如果需要在您的商業軟件中使用rar格式進行解壓縮,那么你需要為rar付費,rar在國內很流行是由于盜版的存在,正因為算法是不開源的,所以我們壓縮rar并沒有第三方的開源庫可供選擇,只能另尋出路。

針對rar的解壓縮,我們通常使用winrar,幾乎每臺機器都安裝了winrar,對于普通用戶來說它提供基于用戶界面的解壓縮方式,另外,它也提供基于命令行的解壓縮方式,這為我們在程序中解壓縮rar格式提供了一個入口,我們可以在C#程序中調用rar的命令行程序實現解壓縮,思路是這樣的:

1、判斷注冊表確認用戶機器是否安裝winrar程序,如果安裝取回winrar安裝目錄。

2、創建一個命令行執行進程。

3、通過winrar的命令行參數實現解壓縮。

首先我們通過下面的代碼判斷用戶計算機是否安裝了winrar壓縮工具:

如果已經安裝winrar可通過如下代碼返回winrar的安裝位置,未安裝則返回空字符串,最后并關閉注冊表:

public static string ExistsWinRar()
{
    string result = string.Empty;

    string key = @"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe";
    RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(key);
    if (registryKey != null)
    {
        result = registryKey.GetValue("").ToString();
    }
    registryKey.Close();

    return result;
}
/// <summary>
/// 將格式為rar的壓縮文件解壓到指定的目錄
/// </summary>
/// <param name="rarFileName">要解壓rar文件的路徑</param>
/// <param name="saveDir">解壓后要保存到的目錄</param>
public static void DeCompressRar(string rarFileName, string saveDir)
{
    string regKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe";
    RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(regKey);
    string winrarPath = registryKey.GetValue("").ToString();
    registryKey.Close();
    string winrarDir = System.IO.Path.GetDirectoryName(winrarPath);
    String commandOptions = string.Format("x {0} {1} -y", rarFileName, saveDir);

    ProcessStartInfo processStartInfo = new ProcessStartInfo();
    processStartInfo.FileName = System.IO.Path.Combine(winrarDir, "rar.exe");
    processStartInfo.Arguments = commandOptions;
    processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;

    Process process = new Process();
    process.StartInfo = processStartInfo;
    process.Start();
    process.WaitForExit();
    process.Close();
}
/// <summary>
/// 將目錄和文件壓縮為rar格式并保存到指定的目錄
/// </summary>
/// <param name="soruceDir">要壓縮的文件夾目錄</param>
/// <param name="rarFileName">壓縮后的rar保存路徑</param>
public static void CompressRar(string soruceDir, string rarFileName)
{
    string regKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WinRAR.exe";
    RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(regKey);
    string winrarPath = registryKey.GetValue("").ToString();
    registryKey.Close();
    string winrarDir = System.IO.Path.GetDirectoryName(winrarPath);
    String commandOptions = string.Format("a {0} {1} -r", rarFileName, soruceDir);

    ProcessStartInfo processStartInfo = new ProcessStartInfo();
    processStartInfo.FileName = System.IO.Path.Combine(winrarDir, "rar.exe");
    processStartInfo.Arguments = commandOptions;
    processStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
    Process process = new Process();
    process.StartInfo = processStartInfo;
    process.Start();
    process.WaitForExit();
    process.Close();
}

在C#.NET中壓縮解壓zip文件

zip是一種免費開源的壓縮格式,windows平臺自帶zip壓縮和解壓工具,由于算法是開源的,所以基于zip的解壓縮開源庫也很多,SharpZipLib是一個很不錯的C#庫,它能夠解壓縮zip、gzip和tar格式的文件,首先下載SharpZipLib解壓后,在您的項目中引用ICSharpCode.SharpZLib.dll程序集即可,下面是一些關于SharpZipLib壓縮和解壓的示例。

ZipOutputStream zipOutStream = new ZipOutputStream(File.Create("my.zip"));
CreateFileZipEntry(zipOutStream, "file1.txt", "file1.txt");
CreateFileZipEntry(zipOutStream, @"folder1\folder2\folder3\file2.txt", "file2.txt");
zipOutStream.Close();
Directory.CreateDirectory("ZipOutPut");
 ZipInputStream zipInputStream = new ZipInputStream(File.Open("my.zip", FileMode.Open));
 ZipEntry zipEntryFromZippedFile = zipInputStream.GetNextEntry();
 while (zipEntryFromZippedFile != null)
 {
     if (zipEntryFromZippedFile.IsFile)
     {
         FileInfo fInfo = new FileInfo(string.Format("ZipOutPut\\{0}", zipEntryFromZippedFile.Name));
         if (!fInfo.Directory.Exists) fInfo.Directory.Create();

         FileStream file = fInfo.Create();
         byte[] bufferFromZip = new byte[zipInputStream.Length];
         zipInputStream.Read(bufferFromZip, 0, bufferFromZip.Length);
         file.Write(bufferFromZip, 0, bufferFromZip.Length);
         file.Close();
     }
     zipEntryFromZippedFile = zipInputStream.GetNextEntry();
 }
 zipInputStream.Close();

使用.NET中自帶的類解壓縮zip文件

微軟在System.IO.Compression命名空間有一些關于文件解壓縮的類,如果只是希望壓縮解壓zip和gzip格式的文件,是個不錯的選擇,在NET Framework 4.5框架中,原生System.IO.Compression.FileSystem.dll程序集中新增了一個名為ZipFile的類,,讓壓縮和解壓zip文件變得更簡單,ZipFile的使用示例如下:

System.IO.Compression.ZipFile.CreateFromDirectory(@"e:\test", @"e:\test\test.zip"); //壓縮
System.IO.Compression.ZipFile.ExtractToDirectory(@"e:\test\test.zip", @"e:\test"); //解壓

支持格式最多的C#解壓縮開源庫

當您還苦苦在為上面的各種壓縮格式發愁的時候,一個名為SharpCompress的C#框架被開源,您可以在搜索引擎中找到SharpCompress框架的開源代碼,它支持:rar 7zip, zip, tar, tzip和bzip2格式的壓縮和解壓,下面的示例直接從rar格式文件讀取并解壓文件。

using (Stream stream = File.OpenRead(@"C:\Code\sharpcompress.rar"))
{
    var reader = ReaderFactory.Open(stream);
    while (reader.MoveToNextEntry())
    {
        if (!reader.Entry.IsDirectory)
        {
            Console.WriteLine(reader.Entry.FilePath);
            reader.WriteEntryToDirectory(@"C:\temp");
        }
    }
}

總結

關于rar和zip格式相比,rar的壓縮率比zip要高,而且支持分卷壓縮,但rar是商業軟件,需要付費,zip壓縮率不如rar那么高,但開源免費,7zip格式開源免費,壓縮率較為滿意,這些壓縮格式各有優勢,就微軟平臺和一些開源平臺來說,一般采用的都是zip格式,因為它更容易通過編程的方式實現,比rar更加可靠。??

/// <summary>
/// 解壓RAR和ZIP文件(需存在Winrar.exe(只要自己電腦上可以解壓或壓縮文件就存在Winrar.exe))
/// </summary>
/// <param name="UnPath">解壓后文件保存目錄</param>
/// <param name="rarPathName">待解壓文件存放絕對路徑(包括文件名稱)</param>
/// <param name="IsCover">所解壓的文件是否會覆蓋已存在的文件(如果不覆蓋,所解壓出的文件和已存在的相同名稱文件不會共同存在,只保留原已存在文件)</param>
/// <param name="PassWord">解壓密碼(如果不需要密碼則為空)</param>
/// <returns>true(解壓成功);false(解壓失敗)</returns>
public static bool UnRarOrZip( string UnPath, string rarPathName, bool IsCover, string PassWord)
{
     if (!Directory.Exists(UnPath))
         Directory.CreateDirectory(UnPath);
     Process Process1 = new Process();
     Process1.StartInfo.FileName = "Winrar.exe" ;
     Process1.StartInfo.CreateNoWindow = true ;
     string cmd = "" ;
     if (! string .IsNullOrEmpty(PassWord) && IsCover)
         //解壓加密文件且覆蓋已存在文件( -p密碼 )
         cmd = string .Format( " x -p{0} -o+ {1} {2} -y" , PassWord, rarPathName, UnPath);
     else if (! string .IsNullOrEmpty(PassWord) && !IsCover)
         //解壓加密文件且不覆蓋已存在文件( -p密碼 )
         cmd = string .Format( " x -p{0} -o- {1} {2} -y" , PassWord, rarPathName, UnPath);
     else if (IsCover)
         //覆蓋命令( x -o+ 代表覆蓋已存在的文件)
         cmd = string .Format( " x -o+ {0} {1} -y" , rarPathName,UnPath);
     else
         //不覆蓋命令( x -o- 代表不覆蓋已存在的文件)
         cmd = string .Format( " x -o- {0} {1} -y" , rarPathName, UnPath);
     //命令
     Process1.StartInfo.Arguments = cmd;
     Process1.Start();
     Process1.WaitForExit(); //無限期等待進程 winrar.exe 退出
     //Process1.ExitCode==0指正常執行,Process1.ExitCode==1則指不正常執行
     if (Process1.ExitCode == 0)
     {
         Process1.Close();
         return true ;
     }
     else
     {
         Process1.Close();
         return false ;
     }
 
}
 
/// <summary>
/// 壓縮文件成RAR或ZIP文件(需存在Winrar.exe(只要自己電腦上可以解壓或壓縮文件就存在Winrar.exe))
/// </summary>
/// <param name="filesPath">將要壓縮的文件夾或文件的絕對路徑</param>
/// <param name="rarPathName">壓縮后的壓縮文件保存絕對路徑(包括文件名稱)</param>
/// <param name="IsCover">所壓縮文件是否會覆蓋已有的壓縮文件(如果不覆蓋,所壓縮文件和已存在的相同名稱的壓縮文件不會共同存在,只保留原已存在壓縮文件)</param>
/// <param name="PassWord">壓縮密碼(如果不需要密碼則為空)</param>
/// <returns>true(壓縮成功);false(壓縮失敗)</returns>
public static bool CondenseRarOrZip( string filesPath, string rarPathName, bool IsCover, string PassWord)
{
     string rarPath = Path.GetDirectoryName(rarPathName);
     if (!Directory.Exists(rarPath))
         Directory.CreateDirectory(rarPath);
     Process Process1 = new Process();
     Process1.StartInfo.FileName = "Winrar.exe" ;
     Process1.StartInfo.CreateNoWindow = true ;
     string cmd = "" ;
     if (! string .IsNullOrEmpty(PassWord) && IsCover)
         //壓縮加密文件且覆蓋已存在壓縮文件( -p密碼 -o+覆蓋 )
         cmd = string .Format( " a -ep1 -p{0} -o+ {1} {2} -r" , PassWord, rarPathName, filesPath);
     else if (! string .IsNullOrEmpty(PassWord) && !IsCover)
         //壓縮加密文件且不覆蓋已存在壓縮文件( -p密碼 -o-不覆蓋 )
         cmd = string .Format( " a -ep1 -p{0} -o- {1} {2} -r" , PassWord, rarPathName, filesPath);
     else if ( string .IsNullOrEmpty(PassWord) && IsCover)
         //壓縮且覆蓋已存在壓縮文件( -o+覆蓋 )
         cmd = string .Format( " a -ep1 -o+ {0} {1} -r" , rarPathName, filesPath);
     else
         //壓縮且不覆蓋已存在壓縮文件( -o-不覆蓋 )
         cmd = string .Format( " a -ep1 -o- {0} {1} -r" , rarPathName, filesPath);
     //命令
     Process1.StartInfo.Arguments = cmd;
     Process1.Start();
     Process1.WaitForExit(); //無限期等待進程 winrar.exe 退出
     //Process1.ExitCode==0指正常執行,Process1.ExitCode==1則指不正常執行
     if (Process1.ExitCode == 0)
     {
         Process1.Close();
         return true ;
     }
     else
     {
         Process1.Close();
         return false ;
     }
 
}

上述就是小編為大家分享的如何在C#中壓縮和解壓rar、zip文件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华池县| 龙井市| 宁陵县| 绥阳县| 新津县| 莲花县| 手游| 北流市| 房山区| 平远县| 宁化县| 江川县| 搜索| 海城市| 桂阳县| 察隅县| 平乡县| 慈溪市| 鄂伦春自治旗| 隆昌县| 都兰县| 麟游县| 海口市| 阆中市| 安远县| 宝应县| 迁西县| 商洛市| 盐边县| 鸡东县| 浦县| 朝阳市| 甘泉县| 鲁山县| 托克托县| 延吉市| 宜良县| 平泉县| 黎川县| 鹤山市| 思南县|