Possible Duplicate : Write to CD from .net

I have a data file in f:\ drive named 'cd.txt'. I want to write this file to a CD i.e E:\.

String source ="F:\\cd.txt";
String destination="E:\\cd.txt";

File.copy(sorce,destination);

The above line is throwing exception saying "Access to the path 'E:\cd.txt' is denied".

What is the solution for this .Please help.

link|improve this question
feedback

5 Answers

Is the .NET/C#? You can use ICDBurn to copy files to a disc. See this answer:

http://stackoverflow.com/questions/799867/write-to-a-cd-from-net

link|improve this answer
feedback

I don't think that's so easily feasible, Windows explorer give the impression doing a file copy is enough but that not the case.

I think you might take a look at XPBurn component.

link|improve this answer
feedback

You cant just copy files to a disc drive. Writing files to a CD-R is a complicated process.

I have heard of a C# .NET component called XPBurn. I have not used it, but it looks like it'll do what you need using the IMAPI Interfaces.

link|improve this answer
feedback

Yes, but it's technically Windows API:

Dhawan the One

link|improve this answer
why is that exception thrown? What is the solution? – Nitin Nov 19 '09 at 5:58
You're trying to treat the drive as a normal read-write drive... I suspect you have to 'prep' the drive before you can do that. – John Weldon Nov 19 '09 at 14:49
feedback

IMAPI is only for C++, is there a good wrapper for C#? o maybe a library? i used the project wrapper from the codeproject page.. i haven't test it, all i did was exclude the Interop folder and moved it to another project to try and build the winform in WPF.. therefore i excluded the Interop to a single class project for a DLL... will test it this week..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.