delphi – 检查目录是否可读

前端之家收集整理的这篇文章主要介绍了delphi – 检查目录是否可读前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们如何检查目录是否是readOnly或Not?

解决方法

您可以使用 FileGetAttr函数并检查是否设置了faReadOnly标志.

试试这段代码

function DirIsReadOnly(Path:string):Boolean;
var
 attrs    : Integer;
begin
 attrs  := FileGetAttr(Path);
 Result := (attrs  and faReadOnly) > 0;
end;
原文链接:https://www.f2er.com/delphi/101873.html

猜你在找的Delphi相关文章