首页 > 学院 > 开发设计 > 正文

改变文件夹图标

2019-11-18 18:10:42
字体:
来源:转载
供稿:网友
 

说白修改文件里的隐藏文件desktop.ini
下面是源代码
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    PRocedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  iniFile : TStrings ;
begin
  CreateDir('C:/YourFolder') ;
  iniFile := TStringList.Create;
  with iniFile do
  begin
    Add('[.ShellClassInfo]') ;

    Add('IconFile = ' + GetEnvironmentVariable('Windir')
                      + '/system32/SHELL32.DLL') ;

    Add('IconIndex = 38') ;


    Add('InfoTip = This is folder with icon') ;
    SaveToFile('C:/YourFolder/Desktop.ini');
  end;

  SysUtils.FileSetAttr('C:/YourFolder', SysUtils.faReadOnly) ;
  SysUtils.FileSetAttr('C:/YourFolder/Desktop.ini',
                        SysUtils.faSysFile or SysUtils.faHidden) ;
  iniFile.Free ;
end;


end.


 


上一篇:将Dcom对象转换成Com+对象的一种办法

下一篇:多层数据库开发十四:剖析几个MIDAS示范程序

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注