Atalho para tornar algo somente leitura / não leitura somente

5

Existe um comando de atalho do Windows (explorer) ou não orientado por mouse para alterar o status de leitura de um determinado arquivo?

    
por Peter Turner 16.03.2010 / 20:35

2 respostas

4

Funciona no XP: Alt + Enter Alt + R Introduzir

    
por 26.03.2010 / 03:23
2

attrib é o que você está procurando:

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

help attrib diz:

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.
    
por 16.03.2010 / 20:41