Reputation:
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
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
Reputation: 82186
Or this one: http://isocs.codeplex.com/
Bad spelling, but also works with DVDs.
Upvotes: 3
Reputation: 887415
.Net itself cannot create or manipulate ISO images.
You can search Google for ISO libraries; I found this one.
Upvotes: 11