How to Extract RAR Files Using C#
In this guide, we will cover the process of extracting RAR files using C#. This tutorial includes the necessary resources to set up the development environment, a comprehensive list of steps that elaborates on the programming logic, and runnable sample code for unzipping RAR files.
Benefits of Extracting RAR Files
- Compression:
- RAR format typically provides better compression ratios compared to ZIP.
- Multi-part Archives:
- RAR files support multi-part archives, allowing large datasets to be split into smaller files.
- File Information:
- Allows you to access various details (size, date, etc.) about files in the archive before extraction.
Prerequisites: Preparing the Environment
- Set up Visual Studio or any compatible .NET IDE.
- Install Aspose.ZIP from NuGet Package Manager.
Step-by-Step Guide to Extract RAR Files
Step 1: Install Aspose.ZIP
Add the Aspose.ZIP library to your project.
Install-Package Aspose.ZIP
Step 2: Load the RAR File
Load the source RAR file using the RarArchive
class.
using (RarArchive rarArchive = new RarArchive("Sample.rar"))
{
// Processing steps will follow here
}
Step 3: Parse the Entries
Loop through all the entries in the RAR archive.
foreach (var entry in rarArchive.Entries)
{
// Further processing steps follow here
}
Step 4: Create a FileStream
Create a FileStream
for each entry to write the extracted data.
var file = File.Create(entry.Name);
Step 5: Read Bytes from the Entry
Read all bytes from the current entry and save them to the FileStream
.
using (var fileEntry = entry.Open())
{
byte[] data = new byte[1024];
int bytesCount;
while ((bytesCount = fileEntry.Read(data, 0, data.Length)) > 0)
{
file.Write(data, 0, bytesCount);
}
}
Step 6: Save the Extracted File
Ensure the FileStream
is properly saved and closed.
file.Close();
file.Dispose();
Complete Code Example to Extract RAR Files
Here’s a complete example demonstrating how to extract RAR files in C#:
// Load the RAR file
using (RarArchive rarArchive = new RarArchive("Sample.rar"))
{
// Parse all entries in the archive
foreach (var entry in rarArchive.Entries)
{
// Create a file for each entry
var file = File.Create(entry.Name);
// Open the archive entry and save data to the file
using (var fileEntry = entry.Open())
{
byte[] data = new byte[1024];
int bytesCount;
while ((bytesCount = fileEntry.Read(data, 0, data.Length)) > 0)
{
file.Write(data, 0, bytesCount);
}
}
// Close the file stream after saving
file.Close();
}
}
Additional Information
- You can filter files based on various criteria such as size or date before extraction.
- The Aspose.ZIP library supports different archive formats, allowing for versatile file manipulation.
Conclusion
This guide has demonstrated how to extract RAR files in C# using Aspose.ZIP. By following the outlined steps and code sample, you can incorporate RAR extraction functionality into your applications seamlessly. For further exploration, consider checking out tutorials on compressing files or extracting other archive formats.