通过Desktop.ini设置文件夹备注以及图标
程序员文章站
2023-04-04 19:50:51
1.新建一个文件夹temp,进入此文件夹,建立desktop.ini文件,编辑内容为: 2.隐藏desktop.ini文件 3.刷新文件夹,并设置为系统类型 此时会自动刷新 参考文档:https://baike.baidu.com/item/desktop.ini ......
1.新建一个文件夹temp,进入此文件夹,建立desktop.ini文件,编辑内容为:
; 文件夹图标 [.shellclassinfo] ;设置文件夹的备注 infotip=this is temp file ;局限性资源名称,会修改文件的显示名称,但是原始的文件名不变 localizedresourcename=mytempfilepro ;设置icon的顺序 iconindex=mainicon ;设置icon位置 iconfile=%userprofile%\desktop\bitbug_favicon.ico ; 文件夹背景 [extshellfolderviews] [{be098140-a513-11d0-a3a4-00c04fd706ec}] ;定义图片背景 iconarea_image=%userprofile%\desktop\temp.jpg ;定义文字的颜色 iconarea_text=0x000000ff ;标示文件夹所有者 [deleteoncopy] owner=temp ;备注 personalizedname=my temp file [viewstate] mode= vid= foldertype=generic
2.隐藏desktop.ini文件
attrib +h temp/desktop.ini
3.刷新文件夹,并设置为系统类型
attrib +s temp
此时会自动刷新
参考文档: