delphi 判断某个磁盘分区是否存在


本文整理自网络,侵删。

 function DiskInDrive(Drive: Char): Boolean;
var ErrorMode: word;
begin
if Drive in ['a'..'z'] then Dec(Drive, $20);
if not (Drive in ['A'..'Z']) then
begin
Result := False;
Exit;
end;
ErrorMode := SetErrorMode(SEM_FailCriticalErrors);
try
if DiskSize(Ord(Drive) - $40) = -1 then
Result := False
else
Result := True;
finally
SetErrorMode(ErrorMode);
end;
end;

相关阅读 >>

Delphi 检测是否包含字符

Delphi monthcalendar1 获取选中日期

Delphi uhttp_flood

Delphi listbox 使用

Delphi 实现窗体倒计时进度条显示

Delphi tstringlist删除重复项

Delphi twebbrowser 用法

Delphi屏蔽win、ctrl_esc、alt_tab、alt_f4等键(windows xp、windows 2003 server下测试通过)

Delphi indy tidhttp tidhttpserver post get

Delphi idhashmessagedigest 获取文件md5

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...