检测磁盘是否变化

  • 主题发起人 主题发起人 import
  • 开始时间 开始时间
I

import

Unregistered / Unconfirmed
GUEST, unregistred user!
最简单的检查CD-ROM或是磁盘是否有过变化的方法 是检查其 volume号码。你可以简单地运用下面的函数来返 回磁盘的volume系列
号码GetDiskVolSerialID('E'), 函数代码如下:
function GetDiskVolSerialID(cDriveName:char):DWord;
var
dwTemp1,dwTemp2:DWord;
begin
GetVolumeInformation(PChar(cDriveName+':l'), Nil,0,Result,
dwTemp2,dwTemp2,Nil,0);
end;
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
I
回复
0
查看
579
import
I
后退
顶部