Create a Flat ZIP Archive in C#

Often, you receive a ZIP archive that contains other ZIP archives inside it, resulting in a nested structure. In such cases, you may want to flatten this structure by extracting all the inner ZIP archives into the outer archive. This article demonstrates how to create a flat ZIP archive in C#.

June 9, 2024 · 3 min · Usman Aziz

Create 7z (7-Zip) Archives Programmatically using C# .NET

In a previous post, we explored various methods of creating ZIP archives using C#. This article will expand on that knowledge by focusing on the 7z format, which is based on an open-source architecture and offers a high compression ratio. Notably, 7z supports 256-bit AES encryption, allowing you to secure not just the files but also their names. In this guide, you’ll learn how to create 7z (7-Zip) archives programmatically using C#. We will cover: ...

May 10, 2024 · 3 min · Usman Aziz

Add Files or Folders to ZIP Archives Programmatically in C#

Introduction to ZIP Archives in C# ZIP archives are essential for compressing and organizing files and folders into a single container. They not only reduce file sizes for efficient storage and transmission but also maintain metadata and can be encrypted for security purposes. This article will guide you through various methods to programmatically create ZIP files in C#, covering operations such as adding files and folders, creating password-protected archives, and applying AES encryption. ...

November 9, 2023 · 4 min · Usman Aziz

Extract Nested ZIP Archives in C#

We often encounter scenarios where multiple ZIP archives are encapsulated inside another ZIP. This article demonstrates how to extract nested ZIP archives in C# .NET without writing complex code.

November 9, 2023 · 3 min · Usman Aziz

Extract ZIP Archives Programmatically in C#

If you’re looking to extract ZIP archives programmatically in C#, you’re in the right place! This article provides a straightforward guide on how to efficiently handle ZIP file extraction using the .NET framework zip extraction library. We’ll cover methods for unzipping files, including how to deal with password-protected archives and AES encryption. In our previous article on creating ZIP files, we explored various ways to package files using Aspose.ZIP for .NET. Now, let’s delve into unzipping ZIP files and extracting files from password-protected or AES encrypted ZIP archives in C#. ...

November 9, 2023 · 3 min · Usman Aziz

Open or Extract 7z (7zip) File Programmatically using C# .NET

7z files are popular due to their excellent compression ratio. This guide will walk you through how to open or extract a 7z (7zip) file programmatically in your C# applications. Explore the sections below to learn how to create a 7z file extractor and unzip password-protected archives.

November 9, 2023 · 2 min · Farhan Raza

Unrar or Extract Files Programmatically using C#

You can store multiple files in compressed form as RAR archive. In this article, you will learn how to Unrar or extract files from a compressed RAR archive. Please find further details in the following sections.

November 9, 2023 · 3 min · Farhan Raza

Create TAR Files in C# .NET

TAR format is primarily used in Unix and Unix-like operating systems to archive files and folders. In this blog post, we will walk you through the process of creating TAR files in C#.

October 9, 2023 · 3 min · Usman Aziz
 English