12

I'm searching for a library (or codebase) which will allow the creation of an ISO image from a CD/DVD with the .NET platform.

Does the .NET framework itself support the creation of ISO images?

I appreciate any advice.

Zach Johnson
  • 23,678
  • 6
  • 69
  • 86
  • Does this answer your question? [DVD ISO from C# - .NET DiscUtils alternatives](https://stackoverflow.com/questions/9685894/dvd-iso-from-c-sharp-net-discutils-alternatives) – Wai Ha Lee May 18 '22 at 14:40

3 Answers3

11

.Net itself cannot create or manipulate ISO images.

You can search Google for ISO libraries; I found this one.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
3

Or this one: http://isocs.codeplex.com/

Bad spelling, but also works with DVDs.

Stefan Steiger
  • 78,642
  • 66
  • 377
  • 442
3

I was looking for ISO handling in general (reading AND writing) and I found this page: .NET DiscUtils

MIT License, only managed code and supports FAT, NTFS and virtual machine images. Might be worth a look if you want to read back your stuff.

Peter O.
  • 32,158
  • 14
  • 82
  • 96
DAud
  • 41
  • 1
  • 6
  • Since Codplex has been shutdown, the latest DiscUtils (as of this writing) can be found at https://github.com/DiscUtils/DiscUtils – DaveWilliamson Jan 02 '22 at 19:09
  • Can someone explain how I can add the DiscUtils to a project? I don't understand how to do that and the documentation isn't very clear. I am still learning C#. – Tornado726 May 28 '22 at 02:52