mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 05:25:00 +00:00
[PR #886] [CLOSED] Add support for .ISO file type #1302
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/886
Author: @DineshSolanki
Created: 1/12/2025
Status: ❌ Closed
Base:
master← Head:add-iso-support📝 Commits (1)
294ee17Add support for .ISO file type📊 Changes
7 files changed (+218 additions, -3 deletions)
View changed files
📝
FORMATS.md(+2 -0)📝
README.md(+3 -1)📝
src/SharpCompress/Archives/AutoArchiveFactory.cs(+23 -2)📝
src/SharpCompress/Archives/IArchiveFactory.cs(+1 -0)📝
src/SharpCompress/Archives/IWriteableArchiveFactory.cs(+1 -0)➕
src/SharpCompress/Archives/Iso/IsoArchive.cs(+133 -0)➕
src/SharpCompress/Archives/Iso/IsoArchiveEntry.cs(+55 -0)📄 Description
Add support for .ISO file type to the SharpCompress library.
New Files:
IsoArchive.csto handle .ISO archives.IsoArchiveEntry.csto represent entries in .ISO archives.Documentation:
FORMATS.mdto include .ISO in the supported format table and mention .ISO support in the Accessing Archives section.README.mdto include .ISO in the list of supported formats and mention .ISO support in the Recommended Formats section.Archive Factory:
ArchiveFactory.csto include .ISO support.IArchiveFactory.csto addIsoFactoryto the list of known archive factories.IWriteableArchiveFactory.csto addIsoFactoryto the list of writable archive factories.AutoArchiveFactory.csto add support for .ISO archives in theIsArchivemethod and update theOpenmethod to handle .ISO archives.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.