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)
日本語
ファイル属性の設定・解除・表示
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