xp下可以用这种方法给文件夹添加备注:- @echo off&setlocal ENABLEDELAYEDEXPANSION
- rem 将文件夹拖到图标上。无备注的添加备注,有备注的不变。
- rem 如果输入的备注前加 “cover ”,有备注的会被改变,无备注的添加备注。
- rem 输入信息前加“cover ”可覆盖文件夹中的原DeskTop.ini文件
- if "%~1"=="" echo Please 拖入 folder.&pause>nul&exit
- set /p info=input the info:
- set "tempinfo=!info!"
- :start
- set "info=!tempinfo!"
- if "%~1"=="" pause&exit
- attrib +s "%~1"
- cd /d "%~1"
- if not exist DeskTop.ini goto :create
- if "!info:~0,6!"=="cover " (
- set "info=!info:cover =!"
- del /a /f DeskTop.ini
- goto :create) else (goto :DoNothing)
- :create
- echo [.ShellClassInfo]>>DeskTop.ini
- echo InfoTip=!info!>>DeskTop.ini
- attrib +s +h DeskTop.ini
- :DoNothing
- shift
- goto :start
复制代码
|