0

PEview を使用してファイルの中を見ると、ファイル属性はどこにあるのだろうか。Windows では、ファイルを右クリックしてファイル属性を表示できます。その場合、PEview または Hex ビューを使用してファイル属性を表示できますか? または、ファイル属性を表示する他のツールはありますか?

4

1 に答える 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 に答える