我可以使用PEview或Hex视图(编辑器)查看文件属性吗



当我使用PEview查看文件内部时,我想知道文件属性在哪里?在Windows上,我可以通过右键单击文件来查看文件属性。如果是,我可以使用PEview或Hex视图查看文件属性吗?或者,是否有其他工具可以查看文件属性?

您可以尝试从命令行使用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

最新更新