Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

how do i see directories such as /Volumes in Finder?

i have a NFS mounted drive and i can see it and do things with it using Terminal. i know where it is supposed to be.

i can not find it in Finder - /Volumes and some other directories are not shown in Finder. how do i see these directories in Finder?

MacBook Air, Mac OS X (10.6.8), NFS mount

Posted on Nov 27, 2012 8:34 AM

Reply
Question marked as Best reply

Posted on Nov 27, 2012 8:37 AM

Open the Script Editor or AppleScript Editor in one of the subfolders of Applications and run the following:


tell application "Finder" to quit

if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then

do shell script "defaults write com.apple.finder AppleShowAllFiles 0"

else

do shell script "defaults write com.apple.finder AppleShowAllFiles 1"

end if

delay 2

tell application "Finder" to run


If you change your mind later, run the script again.


(72084)

4 replies
Question marked as Best reply

Nov 27, 2012 8:37 AM in response to handweaver62

Open the Script Editor or AppleScript Editor in one of the subfolders of Applications and run the following:


tell application "Finder" to quit

if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then

do shell script "defaults write com.apple.finder AppleShowAllFiles 0"

else

do shell script "defaults write com.apple.finder AppleShowAllFiles 1"

end if

delay 2

tell application "Finder" to run


If you change your mind later, run the script again.


(72084)

how do i see directories such as /Volumes in Finder?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.