delphi 去掉文件只读属性


本文整理自网络,侵删。

 uses FileCtrl;

procedure TForm1.BitBtn1Click(Sender: TObject);
begin
with OpenDialog1 do
if Execute then
if FileSetAttr(filename, faArchive)=0 then
Caption:='attribute was changed'
else
Caption:='attribute was not changed';
end;


Delphi 设置文件属性

请在interface下的uses中引用filectrl单元

2. 首先取文件属性

var

attr : integer;

filename : string; begin

filename := 'myfile';

attr := FileGetAttr(filename); end;


3. 设置文件属性(如设置归档属性 -> faArchive )



attr := attr or faArchive; //如要去掉某一属性,则如下句 attr := attr and (not faArchive); //保留其它属性 if FileSetAttr(filename, attr)=0 then //成功代码 else //失败代码


4. 附文件属性常量

Constant Value Description

faReadOnly $00000001 Read-only files 只读文件

faHidden $00000002 Hidden files 隐藏文件

faSysFile $00000004 System files 系统文件

faVolumeID $00000008 Volume ID files 卷标文件

faDirectory $00000010 Directory files 目录

faArchive $00000020 Archive files 归档文件

faAnyFile $0000003F Any file 任意文件

相关阅读 >>

Delphi 10 seattle android应用程序使用toast

Delphi 2009 中 tstrings 与 tstream 的增强

Delphi代码,直截注入别的进程,之后直截运行在别的进程中的代码

Delphi 判断字符串是否包含汉字,正则版和非正则版

Delphi xe8 tstylebook的使用

Delphi 正则表达式tperlregex 详解

Delphi readprocessmemory writeprocessmemory读写内存

Delphi timer定时器使用

Delphi shellexecute 打开文件夹

如何把 Delphi 自带的内存泄露写到日志

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



打赏

取消

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

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

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

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

评论

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