I checked, no, it is the right log file. Maybe the error happens before the burning process starts.
This is my command line output:
Code:
Starting to write disc...73297 Files, Size: 13.36 GB
Burning data disc completed.
Verifying disc...
An error (800402A0) occured while executing the command: Exception from HRESULT:
0x800402A0
This is my code:
Code:
Console.WriteLine("Starting to write disc...{0} Files, Size: {1}", dataBurner.GetFileCount(), FormatFileSize.Format(dataBurner.Size * 1024L));
try
{
dataBurner.Burn(false, name);
}
catch (COMException)
{
throw new COMException(dataBurner.LastError, (int)dataBurner.LastErrorCode);
}
Console.WriteLine("Burning data disc completed.");
if (options.Flags.Contains("-verify"))
{
Console.WriteLine("Verifying disc...");
dataBurner.Verify();
Console.WriteLine("Verifying completed.");
}