美文网首页
C++简单源码设置U盘的可写性

C++简单源码设置U盘的可写性

作者: 地主天敌 | 来源:发表于2019-01-28 17:54 被阅读0次

    在代码过程中,将代码过程中比较常用的一些代码珍藏起来,下边资料是关于C++简单设置U盘的可写性的代码,应该是对各位朋友也有用。

    @prarm dwValue,0为可写,1为不可写

    BOOL SetUsbWriteProtect(DWORD dwValue)

    {

        HKEY hKey;;

        DWORD dwRet = RegCreateKey(HKEY_LOCAL_MACHINE,"SYSTEM\CurrentControlSet\Control\StorageDevicePolicies",&hKey);

        if (dwRet != ERROR_SUCCESS)

            return FALSE;

        DWORD dwSize = sizeof(dwValue);

        RegCloseKey(hKey);

        if (dwRet == ERROR_SUCCESS)

            return TRUE;

        return FALSE;

    }

    相关文章

      网友评论

          本文标题:C++简单源码设置U盘的可写性

          本文链接:https://www.haomeiwen.com/subject/iyfzjqtx.html