查看: 508  |  回复: 0
  VB6 利用API得到磁盘驱动器的卷标信息
楼主
发表于 2023年5月6日 19:27

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Private Declare Function GetVolumeInformation2 Lib "kernel32" Alias _
    "GetVolumeInformationA" (ByVal lpRootPathName As String, ByVal _
    lpVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, _
    lpVolumeSerialNumber As Long, lpMaximumComponentLength As Long, _
    lpFileSystemFlags As Long, ByVal lpFileSystemNameBuffer As String, ByVal _
    nFileSystemNameSize As Long) As Long

Private Sub Command1_Click()
    Dim drvserialno As Long
    Dim mydrvlabel As String * 256
    Dim myfilesys As String * 256
    Dim i As Long
    Dim j As Long
    Dim x As Long
    x = GetVolumeInformation2("C:\", mydrvlabel, 256, drvserialno, i, j, myfilesys, 256)
    Debug.Print "Label of C Drive is  " & mydrvlabel
    Debug.Print "It's serial number = " & Hex(serialno)
    Debug.Print "FileSystem = " & myfilesys
End Sub

运行结果:

Label of C Drive is  my-c                                                                                                                                                                                                                                                            
It's serial number = 0
FileSystem = NTFS


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com