我如何以编程方式运行格式化磁盘?

发布于 2024-12-02 03:58:58 字数 166 浏览 0 评论 0原文

我以编程方式搜索格式化硬盘或 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一向肩并 2024-12-09 03:58:58

使用 Win32_Volume 类的 Format 方法。 详细信息

Use the Format method of the Win32_Volume class. Details here.

池木 2024-12-09 03:58:58

正确的方法是使用虚拟磁盘服务 FormatPartition 方法。

The correct way of doing it is to use Virtual Disk Service FormatPartition method.

漫漫岁月 2024-12-09 03:58:58

在 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文