有没有办法以编程方式检测Windows上的SD卡的驱动程序字母?该方法是否支持内部和外部SD卡硬件?谢谢你的时间。
答案 0 :(得分:1)
您可以尝试GetLogicalDriveStrings获取驱动器号,然后使用GetDriveType查看驱动器是否可移动。然后你可以得到更多这样的设备信息(例如是cd-rom,但应该向你展示这个想法):
//handle to the drive to be examined
HANDLE hDevice = CreateFile(TEXT("\\\\.\\G:"), //Drive to open
GENERIC_READ|GENERIC_WRITE, //Access to the drive
FILE_SHARE_READ|FILE_SHARE_WRITE, //Share mode
NULL, //Security
OPEN_EXISTING,0, // no file attributes
NULL);
if (hDevice == INVALID_HANDLE_VALUE) return 0;
CDROM_TOC val; // table of contents for a generic CDROM
DWORD nBytesReturned;
BOOL bResult= DeviceIoControl(
hDevice,
IOCTL_CDROM_READ_TOC,//operation to perform
&val, sizeof(val),//no input buffer
&val, sizeof(val),//output buffer
&nBytesReturned,//#bytes returned
(LPOVERLAPPED) NULL);//synchronous I/O
CloseHandle(hDevice);