本文整理自网络,侵删。
delphi 如何设置文件属性
procedure TForm1.Button1Click(Sender: TObject);
begin
with OpenDialog1 do
if Execute then
if SetFileAttributes(PChar(Filename), FILE_ATTRIBUTE_HIDDEN) then
Caption:='attribute was changed'
else
Caption:='attribute was not changed';
end;
相关阅读 >>
Delphi android windows ios通用获取程序版本
Delphi 10 seattle android应用程序使用toast
更多相关阅读请进入《Delphi》频道 >>