2012-02-22 44 views

回答

0

你可以尝试在Process使用Attrib通过命令行或通过运行它:

ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [+I | -I] 
     [drive:][path][filename] [/S [/D] [/L]] 

    + Sets an attribute. 
    - Clears an attribute. 
    R Read-only file attribute. 
    A Archive file attribute. 
    S System file attribute. 
    H Hidden file attribute. 
    I Not content indexed file attribute. [drive:][path][filename] 
     Specifies a file or files for attrib to process. 
    /S Processes matching files in the current folder 
     and all subfolders. 
    /D Processes folders as well. 
    /L Work on the attributes of the Symbolic Link versus 
     the target of the Symbolic Link 
+0

感谢,但我只是想知道,我可以读一些“文件类型”,“以打开”,使用十六进制视图(或编辑器)在文件属性中“创建”或“修改”(等等)。 – harrison 2012-02-22 10:33:02

+0

@ Dennis您正在查找的文件属性不是文件本身的一部分,而是文件目录的一部分。 “打开”信息文件是注册表的一部分。一个简单的十六进制编辑器将无法访问这些信息作为文件的一部分。 – 2012-02-22 14:07:51

+0

我明白了。这些属性不属于文件。对?谢谢 :) – harrison 2012-02-23 10:39:41

相关问题