user26901
user26901

Reputation:

Create a CD/DVD ISO Image in .NET

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.

Upvotes: 12

Views: 14359

Answers (3)

Sarah El-Saig
Sarah El-Saig

Reputation: 51

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.

Upvotes: 3

Stefan Steiger
Stefan Steiger

Reputation: 82186

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

Bad spelling, but also works with DVDs.

Upvotes: 3

SLaks
SLaks

Reputation: 887415

.Net itself cannot create or manipulate ISO images.

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

Upvotes: 11

Related Questions