我可以使用 WMI 和 WMI 测试软盘驱动器吗? System.Management 命名空间?
我会找出软盘插入状态:
- 没有插入软盘
- 未格式化软盘已
- 插入已格式化软盘
这可以在System.Management命名空间中使用“WMI”来确定吗?
如果是这样,当软盘插入状态发生变化时我可以生成事件吗?
I would find out the floppy inserted state:
- no floppy inserted
- unformatted floppy inserted
- formatted floppy inserted
Can this determined using "WMI" in the System.Management namespace?
If so, can I generate events when the floppy inserted state changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 脚本中心 @ MSDN:
这 通过检查 Win32_LogicalDisk 类。
This comes from Scripting Center @ MSDN:
You'll also be able to tell if it's formatted or not, by checking other members of the Win32_LogicalDisk class.
使用鲍勃·金的想法我编写了以下方法。
它在 CD、可移动驱动器、常规驱动器上运行良好。
然而对于软盘它总是返回“不可用”。
Using Bob Kings idea I wrote the following method.
It works great on CD's, removable drives, regular drives.
However for a floppy it always return "Not Available".