Tagged Questions

3
votes
6answers
1k views

Windows CD Burning API

Hello We need to programatically burn files to CD in a C\C++ Windows XP/Vista application we are developing using Borlands Turbo C++. What is the simplest and best way to do this? We would prefer a …
1
vote
4answers
67 views

Is it possible to write to a CD with .NET?

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"; …
1
vote
2answers
72 views

Bluray Burner in Java - Where to start?

Like the subject of this post suggests, I am looking at developing a suite like nero which helps burn bluray discs. I am kind of clueless as to where to start. Is there anything in Java API that lets …
0
votes
1answer
28 views

Handling HAL implementation: storage.cdrom.write_speeds

device.get('storage.cdrom.write_speeds') This returns HAL list of ints, like: [4284, 2342, 1202, 800] How should these be handled, to recieve writing speed? Or better, how does one retrieve …
0
votes
0answers
65 views

DVD-RW Drive not recognizing a DVD+R disc [closed]

Hi everyone, I am having trouble burning DVD+R disc's. My OS is vista and i have used this burner and these same discs in the past. I haven't had the need to do so in months and now that i come …
0
votes
3answers
113 views

Write to a CD from .Net

Is there an easy way to write to a CD from .Net? How about creating a multisession CD that autoruns an executable that writes to itself?
0
votes
4answers
435 views

Handle leaking in WinAPI CreateFile?

CreateFile allocates 2(!!) handles and CloseHandle closes only one handle when trying to get the low-level access to cd-rom device. OS Windows XP SP3, 5 of 7 tested computers works the same. When …