码迷,mamicode.com
首页 > 其他好文 > 详细

delphi 获取驱动盘的卷标 号

时间:2014-08-01 12:57:51      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   strong   io   for   cti   ar   

{获取C盘的卷标 格式化硬盘卷标改变}
//GetHardDiskSerial(‘c:\‘)
function GetHardDiskSerial(Drive: string): string;
var VolumeSerialNumber: DWORD; 
  MaximumComponentLength: DWORD; 
  FileSystemFlags: DWORD; 
begin 
  if Drive[Length(Drive)]=‘:‘ then Drive := Drive + ‘\‘; 
  GetVolumeInformation(PChar(Drive), nil, 0, @VolumeSerialNumber, MaximumComponentLength, FileSystemFlags, nil, 0); 
  Result := IntToHex(HiWord(VolumeSerialNumber), 4) + ‘-‘ + IntToHex(LoWord(VolumeSerialNumber), 4);
end; 
 
 




delphi 获取驱动盘的卷标 号,布布扣,bubuko.com

delphi 获取驱动盘的卷标 号

标签:style   http   color   strong   io   for   cti   ar   

原文地址:http://www.cnblogs.com/xe2011/p/3884432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!