本文介绍了我怎样才能检测是否有一个驱动软盘?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图用DriveInfo.IsReady,但如果未格式化的软盘驱动器中返回false。
I tried to use DriveInfo.IsReady, but it returns false if an unformatted floppy is in the drive.
推荐答案
您可以尝试读取软盘扇区,看看它是否成功与否。
You can always try to read a sector from the floppy and see if it succeeds or not.
我不知道如何做到这一点的。NET,但这里是C / C ++相同。
I have no clue how to do it in .NET, but here is the C/C++ equivalent.
SetLastError(0);
HANDLE h = CreateFile("\\\\.\\A:", ...);
if (!ReadFile(h, buf, 512, &bytes_read, 0))
{
DWORD err = GetLastError();
}
的CreateFile ,的
这篇关于我怎样才能检测是否有一个驱动软盘?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!