如何创建磁盘映像?
我正在使用 .net 进行开发,但可以使用 c++。我正在寻找一种创建磁盘映像的方法。理想情况下,某个地方可能有一个如下所示的 API:
createVMDK(string driveLetter, out string pathToVMDKOutputfile);
createVHD(string driveLetter, out string pathToVHDOutputfile);
有谁知道 Microsoft、VMWare 或其他公司的 API 允许创建这样的完整磁盘映像吗?
I'm developing in .net, but can use c++. I'm looking for a way to create a disk image. Ideally there could be an API somewhere that looks like this:
createVMDK(string driveLetter, out string pathToVMDKOutputfile);
createVHD(string driveLetter, out string pathToVHDOutputfile);
Does anyone know of any API from Microsoft, VMWare or other that allows for the creation of full disk images like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有API,您可以在进程中调用Disk2VHD:
If there's no API, you can invoke Disk2VHD in a Process: