我已阅读hackchina和codeproject示例,但似乎无法弄清楚如何刻录现有的.iso文件。上面的示例显示了从文件夹制作.iso然后刻录它的方法。我希望能够直接刻录iso文件。
以下是一些代码:
IDiscRecorder2 discRecorder = new MsftDiscRecorder2();
string Burner = comboBox1.SelectedItem.ToString();
foreach (DrvProperties prop in drv_props)
{
if (prop.letter.Contains(Burner)) // letter contains the drive's Letter (E:, G: etc.)
{
discRecorder.InitializeDiscRecorder(prop.ID); // ID contains drive's uniqueID
}
}
IDiscFormat2Data discFormatData = new MsftDiscFormat2Data();
discFormatData.Recorder = discRecorder;
IMAPI_MEDIA_PHYSICAL_TYPE mediaType = discFormatData.CurrentPhysicalMediaType;
......
......
有人可以帮我进一步吗?可以说我有example.iso。我现在应该怎么做?我不明白。 (我在CodeProject示例的代码中使用了IMAPI2.interop)。
非常感谢
答案 0 :(得分:3)
我终于弄明白了,首先需要包含以下名称空间:
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
为了能够使用IStream。
然后你需要从shlwapi.dll导入SHCreateStreamOnFIle来打开一个“读取流”到那个iso:
private const uint STGM_SHARE_DENY_WRITE = 0x00000020;
private const uint STGM_SHARE_DENY_NONE = 0x00000040;
private const uint STGM_READ = 0x00000000;
private const uint STGM_WRITE = 0x00000001;
private const uint STGM_READWRITE = 0x00000002;
[DllImport("shlwapi.dll", CharSet = CharSet.Unicode, ExactSpelling = true, PreserveSig = false, EntryPoint = "SHCreateStreamOnFileW")]
static extern void SHCreateStreamOnFile(string fileName, uint mode, ref IStream stream);
IStream stream = null;
SHCreateStreamOnFile(path2iso, STGM_READ | STGM_SHARE_DENY_WRITE, ref stream);
最后提供给discFormatData.Write()方法。
discFormatData.Write(stream);
我希望它有助于某人。小心