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

Finder hiding files with "..." in the file name?

One of my files is named with a "..." at the start, which seems to be hidden in the finder - I can see from the folder size that the file is in there but can't see it. Is there anyway I can change the file name on a hidden file?

Posted on Dec 2, 2013 4:27 AM

Reply
1 reply

Dec 2, 2013 8:45 AM in response to jadams369

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.


(93787)

Finder hiding files with "..." in the file name?

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