我如何以编程方式运行格式化磁盘?
我以编程方式搜索格式化硬盘或 USB 磁盘的变体。我创建了 api 函数 SHFormatDrive
,但这里使用 windows-dialog。在我看来,这个方法不错,但是我如何隐藏/禁止这个对话框。无论在哪里,我都会继续寻找一种以编程方式格式化磁盘的方法。
I search variants to format hard or usb disks programmatically. I founded api-function SHFormatDrive
, but here use windows-dialog. To my mind, this method not bad, but how i could to hide/forbid this dialog. Anywhere, i continue search a way to format disks programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Win32_Volume 类的 Format 方法。 详细信息。
Use the Format method of the Win32_Volume class. Details here.
正确的方法是使用虚拟磁盘服务 FormatPartition 方法。
The correct way of doing it is to use Virtual Disk Service FormatPartition method.
在 Windows 系统上,您可以通过使用 ::CreateProcess() 执行 DOS 格式命令来执行“静默”格式。
有关详细信息,请参阅这 2 个链接。
CreateProcess() API:http://www.codeproject.com/KB/cpp/9505Yamaha_1。 ASPX
DOS 格式命令: http://answers.yahoo.com/question/index?qid=20070712051040AAIny5w祝
你好运!
On Windows systems, you can do a "silent" format by using ::CreateProcess() to execute a DOS format command.
See these 2 links for details.
CreateProcess() API: http://www.codeproject.com/KB/cpp/9505Yamaha_1.aspx
DOS format command: http://answers.yahoo.com/question/index?qid=20070712051040AAIny5w
Good luck!