自己記錄用
防君子不防小人
=========
@echo off
set a=%%a
attrib D:\123>D:\a.txt
for /f %%a in (D:\a.txt) do (
echo %%a
if "%a%"=="R" goto NH
if "%a%"=="HR" goto H
pause
exit
)
:NH
attrib +H D:\123
del D:\a.txt
exit
:H
attrib -H D:\123
del D:\a.txt
exit
rem attrib [+R -R] [+A -A ] [+S -S] [+H -H] filename [/S [/D]]
rem filename 顯示該檔案屬性
rem + 設定屬性。
rem - 清除屬性。
rem R 唯讀檔案屬性。
rem A 保存檔案屬性。
rem S 系統(tǒng)檔案屬性。
rem H 隱藏檔案屬性。[drive:][path][filename]
rem /S 處理目前的資料夾及所有子資料夾中相符的檔案。
rem /D 一併處理資料夾(需和/S同時使用)。
======