查看: 568  |  回复: 0
  VB6 如何知道硬盘是使用那一种文件系統(FAT32,FAT16,NTFS)?
楼主
发表于 2023年5月6日 15:18

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

Private Declare Function GetVolumeInformation 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

Public Function WhichFileSystem(ByVal Drive As String) As String
    Dim sVolBuf As String * 255
    Dim sSysName As String * 255
    Dim lSerialNum As Long
    Dim lSysFlags As Long
    Dim lComponentLength As Long
    Dim lRes As Long
    lRes = GetVolumeInformation(Drive, sVolBuf, 255, lSerialNum, lComponentLength, lSysFlags, sSysName, 255)
    If lRes Then
        WhichFileSystem = Left$(sSysName, InStr(sSysName, Chr$(0)) - 1)
    Else
        WhichFileSystem = ""
    End If
End Function

Private Sub Command1_Click()
    MsgBox WhichFileSystem("C:\")
End Sub


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