web-dev-qa-db-ja.com

何かを読み取り専用/非読み取り専用にするためのショートカット

特定のファイルの読み取り専用ステータスを切り替えるためのWindows(エクスプローラー)ショートカットまたは非マウス指向のコマンドはありますか?

5
Peter Turner

XPで動作します: Alt+EnterAlt+REnter

5
Hugh Allen

attrib はあなたが探しているものです:

attrib +r readonlyfile.txt
attrib -r writeablefile.txt

help attrib言う:

Displays or changes file attributes.

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

  +   Sets an attribute.
  -   Clears an attribute.
  R   Read-only file attribute.
  A   Archive file attribute.
  S   System file attribute.
  H   Hidden 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.
2
heavyd