Delphi FileGetAttr获取文件各种属性用法.rar

时间:2022-07-30 06:25:50
【文件属性】:

文件名称:Delphi FileGetAttr获取文件各种属性用法.rar

文件大小:6KB

文件格式:RAR

更新时间:2022-07-30 06:25:50

Delphi源码-文件操作

本例子比较简单,主要演示使用Delphi的 FileGetAttr方法获取文件的各种属性,包括是否隐藏、是否只读,其它的属性可以查阅资料,添加相关参数即可,以上两属性的获取代码如下:   if OpenDialog1.Execute then   begin    option:=FileGetAttr(OpenDialog1.FileName);    if (option and fahidden)<>0 then    ShowMessage('文件被隐藏')    else    ShowMessage('文件没有隐藏');    if (option and faReadOnly)<>0 then    ShowMessage('文件是只读')    else    ShowMessage('文件不是只读的');   end;


【文件预览】:
codesc.net
----获取文件各种属性用法()
--------Unit1.ddp(51B)
--------Project1.res(876B)
--------Unit1.dcu(4KB)
--------Unit1.dfm(716B)
--------Project1.cfg(434B)
--------Project1.dpr(188B)
--------Project1.dof(2KB)
--------Unit1.pas(876B)

网友评论