Extract 3MF Content from ZIP in .NET

Use Aspose.ZIP for .NET to inspect a ZIP archive and restore only the 3MF files required by a C# application. 3MF is an additive-manufacturing package used to exchange printable 3D models and production metadata. On this page, extraction means selecting that file from a ZIP container and writing it to a controlled destination; Aspose.ZIP does not interpret or convert the file’s internal content.

Selective extraction fits 3D asset imports, model review services, visualization pipelines, and automated project-package processing. The application can skip unrelated entries, enforce output and resource policies, and pass approved files to the next service without expanding the complete archive.

How to Extract 3MF Files from ZIP Using C#

Install the Aspose.ZIP package for .NET and import the Aspose.Zip namespace. Archive metadata is available before anything is written, allowing the application to evaluate ArchiveEntry.Name, ArchiveEntry.IsDirectory, and ArchiveEntry.UncompressedSize as part of its acceptance policy.


Package Manager Console Command

PM> Install-Package Aspose.Zip

Open the ZIP with Archive, enumerate Archive.Entries, select entries with the .3mf extension, and call ArchiveEntry.Extract for each approved destination. The sample reduces archived paths to final filenames so entries cannot escape the target directory.

Steps to Restore 3MF Files in C#

  • Resolve the source ZIP path and create an isolated output directory.
  • Open the package with the Archive class.
  • Enumerate Archive.Entries instead of expanding every item.
  • Select entries whose final filename uses the .3mf extension.
  • Build a destination path that remains under the approved output root.
  • Reject entries that exceed the configured expanded-size limit.
  • Save each accepted item with ArchiveEntry.Extract.

System Requirements

Before running the example, make sure the environment includes:

  • A supported .NET runtime on Windows, Linux, or macOS.
  • Visual Studio, JetBrains Rider, Visual Studio Code, or another C# development environment.
  • Aspose.ZIP for .NET installed through NuGet or referenced as an assembly.
  • Read access to the source archive and write access to the destination directory.
  • Storage and execution limits appropriate for untrusted compressed input.

C# Example: Select 3MF Files in a ZIP Archive

The code opens a ZIP package, filters non-directory entries by the approved extension, and writes matching files to one output directory. Flattening archived paths keeps this example compact and prevents parent-directory segments from controlling the destination. Production code should also define a deterministic policy for duplicate output names.

Extract 3MF Files from ZIP - C#

using Aspose.Zip;
using System;
using System.IO;

string archivePath = Path.GetFullPath("package.zip");
string outputDirectory = Path.GetFullPath("extracted-3mf");
string[] allowedExtensions = { ".3mf" };
const ulong MaxEntrySize = 100UL * 1024 * 1024;

Directory.CreateDirectory(outputDirectory);

using (var archive = new Archive(archivePath))
{
    foreach (ArchiveEntry entry in archive.Entries)
    {
        if (entry.IsDirectory) continue;

        string fileName = Path.GetFileName(entry.Name);
        if (string.IsNullOrWhiteSpace(fileName)) continue;

        string extension = Path.GetExtension(fileName);
        if (!Array.Exists(
            allowedExtensions,
            value => string.Equals(value, extension, StringComparison.OrdinalIgnoreCase)))
        {
            continue;
        }

        if (entry.UncompressedSize > MaxEntrySize)
        {
            throw new InvalidDataException(
                $"Entry '{fileName}' exceeds the 100 MB extraction limit.");
        }

        string destinationPath = Path.Combine(outputDirectory, fileName);
        entry.Extract(destinationPath);
    }
}

Implementation Notes for 3MF Packages

3MF is internally package-based, but this example treats it as an opaque file stored in an outer ZIP archive. Restoring the 3MF item and unpacking its internal package are different operations; keep those stages separate to avoid mixing paths and validation rules.

A matching extension identifies a candidate model, but geometry, materials, references, and format integrity must be checked by the 3D component that consumes the extracted file.

The example flattens archived paths for ordinary files. If two accepted entries have the same final name, ArchiveEntry.Extract can overwrite an existing output, so choose an explicit collision policy: reject the duplicate, generate a unique name, or preserve a validated relative directory tree. Use a separate destination for each job so concurrent requests cannot mix results.

Security and Privacy Considerations

Treat archive names and payloads as untrusted. Never append ArchiveEntry.Name directly to the destination path because absolute paths and parent-directory segments can write outside the intended folder. The standard example uses Path.GetFileName; workflows that retain directories must resolve the full path and verify that it remains below the approved root.

Set limits for compressed input size, per-entry and total expanded size, entry count, processing time, and concurrent jobs. Extract into restricted temporary storage, clean up partial output after failures, scan files when the application requires it, and avoid logging private filenames or document contents.

3MF Extraction FAQ

How do I extract only 3MF files from a ZIP archive in C#?

Open the ZIP with Archive, enumerate Archive.Entries, match the .3mf extension, and call Extract for each accepted destination path.

Does Aspose.ZIP validate the content of an extracted 3MF file?

No. The extension is only a first-pass filter. Validate the restored file with a component that understands 3MF content.

Can the same selection pattern be used with 7Z, RAR, or TAR containers?

Yes, but open each container with its corresponding Aspose.ZIP archive class. Entry types and available extraction methods can differ by archive format.

How should duplicate 3MF filenames be handled?

Choose the rule before extraction: reject duplicates, generate unique names, or preserve a validated relative directory structure.