Como posso mostrar arquivos / pastas ocultos no Finder?

10

Como posso ver os arquivos ocultos no Finder?

Por exemplo, se eu tiver um arquivo chamado: .something is não está listado.

Agora eu tenho que abrir o terminal e digitar ls -la .

    
por OscarRyz 09.10.2009 / 19:19

5 respostas

7

Abra um terminal e digite:

defaults write com.apple.finder AppleShowAllFiles TRUE

Em seguida, reinicie o Finder digitando:

killall Finder

Para reverter isso, basta digitar:

defaults write com.apple.finder AppleShowAllFiles FALSE
    
por 09.10.2009 / 19:25
3

A melhor maneira que encontrei é usar um serviço do Automator. Então eu posso alternar diretamente do menu do Finder sem precisar iniciar um aplicativo

Como alternar arquivos ocultos :

Para instalar apenas descompacte, clique duas vezes no arquivo, você será solicitado a instalá-lo, basta clicar em Instalar e, em seguida, clicar em Concluído.

Control + Clique ou clique com o botão direito > Abra

    
por 20.10.2012 / 20:45
2

Você pode usar esse script para alternar entre os estados:

# check if hidden files are visible and store result in a variable
isVisible=”$(defaults read com.apple.finder AppleShowAllFiles)”

# toggle visibility based on variables value
if [ "$isVisible" = FALSE ]
then
defaults write com.apple.finder AppleShowAllFiles TRUE
else
defaults write com.apple.finder AppleShowAllFiles FALSE
fi

# force changes by restarting Finder
killall Finder

Você também pode baixar um aplicativo do Automator que irá alternar a visibilidade dos arquivos ocultos aqui:

link

    
por 09.02.2011 / 11:26
1

Você também pode criar um alias para isso para algo que possa lembrar. Basta adicionar o seguinte ao seu .bash_login:

alias show_hidden_files='defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder';

alias hide_hidden_files='defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder';
    
por 03.09.2010 / 02:50
0

Salve este applescript em um serviço para disponibilizá-lo no menu Finder. Ele permitirá que você ative ou desative os arquivos ocultos e, ao reiniciar o Finder, ele reabrirá no diretório em que você estava anteriormente:

tell application "Finder"
    set windowTargets to target of Finder windows
    quit
end tell

set OnOff to do shell script "defaults read com.apple.finder AppleShowAllFiles"
    if OnOff = "NO" or OnOff = "OFF" then
        set OnOffCommand to "defaults write com.apple.finder AppleShowAllFiles ON"
    else
        set OnOffCommand to "defaults write com.apple.finder AppleShowAllFiles OFF"
    end if

    do shell script OnOffCommand
    delay 1

    tell application "Finder" to launch
    tell application "Finder"

    repeat with aTarget in windowTargets
        make new Finder window at aTarget
    end repeat
end tell
    
por 16.04.2014 / 21:18

Tags