分类: WINDOWS
2008-07-09 18:53:13
attrib /d /s * -h -s
使用命令:attrib /d /s c:\myfile +h +s
后myfile目录变为隐藏+系统,隐藏属性为灰不可更改,myfile目录下面的文件和目录并没有继承属性,
原来是什么样还是什么样。然后再利用
attrib /d /s c:\myfile -h -s
myfile目录可以显示,隐藏属性可以再次选中,可以修改。
attrib 显示或更改文件属性,其语法为:
ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [[drive:] [path] filename] [/S [/D]]
+ 设置属性。
- 清除属性。
R 只读文件属性。
A 存档文件属性。
S 系统文件属性。
H 隐藏文件属性。
[drive:][path][filename] 指定要处理的文件属性。
/S 处理当前文件夹及其子文件夹中的匹配文件。
/D 也处理文件夹。
例子:
attrib news86 显示news86的文档属性
attrib +r report.txt 设置为只读
attrib -s -h record.txt
attrib +a a:*.*
attrib -a a:*.bak
xcopy a: b: /a 将A盘上的所有标志为"归档"属性的文件拷到B盘
xcopy a: b: /m 将A盘上的所有文件拷到B盘后并移去归档属性