ATTRIB
Changes the attributes of a file.
Usage: ATTRIB <option> filename
Example: ATTRIB +R info.txt will make info.txt a read-only file. To make a file read/write use –R e.g. ATTRIB -R info.txt
Use +H to make a file hidden and –H to make a file unhidden.
I’ve found ATTRIB to be very useful when I need to delete hidden system files from directories. The directory will often look empty but cannot be deleted. So from within the directory I use: ATTRIB –H –S *.* which removes the hidden and system attributes from all files. All files will now be visible and can be deleted (typically the Human.sys file is the culprit)
日本語
COMMAND
機能
ファイル属性の設定・解除・表示
書式
ATTRIB (+R or -R or +H or -H) (FILE NAME)
備考
外部コマンド
解説
ファイルの属性を変更することで上書きや削除を禁止したり、”DIR”コマンドなどで表示されないようにするコマンドです。 使用例は下記のとおり。
test.txtというファイルを例に説明します。
ファイルを読みとり専用(書き込み禁止)にする。
ATTRIB +R test.txt
ファイルの読みとり専用(書き込み禁止)属性を解除する。
ATTRIB -R test.txt
ファイルを非表示(不可視)にする。
ATTRIB +H test.txt
ファイルを非表示(不可視)属性を解除する。
ATTRIB -H test.txt
ファイル属性を表示する。
ATTRIB test.txt
- ファイル名にワイルドカード“*.*”も使えます。
- ファイル名の左側に表示される属性の種別は
- “A”・・・・・アーカイブ(通常のファイル)
- “D”・・・・・ディレクトリ
- “V”・・・・・ボリュームラベル
- “S”・・・・・システム
- “H”・・・・・不可視
- “R”・・・・・読み出し専用
- の5種です。 なお、このコマンドで変更できる属性はH,Rのみです。
- コマンドのヘルプを表示する。
- ATTRIB
- コマンド単独です。