当我使用 PEview 查看文件时,我想知道文件属性在哪里?在 Windows 上,我可以通过鼠标右键单击文件来查看文件属性。如果是这样,我可以使用 PEview 或 Hex 视图查看文件属性吗?或者,有没有其他工具可以查看文件属性?
问问题
879 次
1 回答
0
您可以尝试从命令行使用Attrib或在Process中运行它:
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
于 2012-02-22T09:12:26.970 回答