欢迎光临
我们一直在努力

vb取磁盘序列号卷标和文件系统类型_visualbasic教程

建站超值云服务器,限时71元/月

声明:

PrivateDeclareFunctionGetVolumeInformationLib”kernel32.dll”Alias”GetVolumeInformationA”(ByVallpRootPathNameAsString,ByVallpVolumeNameBufferAsString,ByValnVolumeNameSizeAsInteger,lpVolumeSerialNumberAsLong,lpMaximumComponentLengthAsLong,lpFileSystemFlagsAsLong,ByVallpFileSystemNameBufferAsString,ByValnFileSystemNameSizeAsLong)AsLong

  代码:

FunctionGetSerialNumber(sRootAsString)AsLong
DimlSerialNumAsLong
DimRAsLong
DimsTemp1AsString,sTemp2AsString
strLabel=String$(255,Chr$(0))
注释:磁盘卷标
strType=String$(255,Chr$(0))
注释:文件系统类型一般为FAT
R=GetVolumeInformation(sRoot,strLabel,Len(strLabel),lSerialNum,0,0,strType,Len(strType))
GetSerialNumber=lSerialNum
注释:在strLabel中为磁盘卷标
注释:在strType中为文件系统类型
EndFunction

  用法:

  当驱动器不存在时,函数返回0。如果是个非根目录,也将返回0:

lSerial=GetSerialNumber(“c:\”)->

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » vb取磁盘序列号卷标和文件系统类型_visualbasic教程
分享到: 更多 (0)