8

I need to see my .htaccess files for the websites i develop locally on my Mac OS X. I put all my sites in the Sites folder. Since it starts with a dot, Mac OS X treats them as system - therefore invisible - files.

I'm aware that you can tell Mac OS X to show invisible files in Finder, either via Terminal or the TinkerTool software. But this makes the Finder and desktop look cluttered.

Therefore i would like to have Finder only show .htaccess files when inside the Sites folder.

Is that possible?

Chealion
  • 26,327
pixeline
  • 353

4 Answers4

8

I'm afraid this isn't possible. It is just all or nothing. Here are a few alternatives to make it a bit smoother:

  1. The Apple Hidden Files Widget. Toggle the hidden files with one click, works for me. Widget
  2. Use a third party app for finding hidden files. For example, Path Finder from Cacao Tech. It makes it possible to view hidden files without your finder being messed up with all those files.

Hope this helps..

sv88
  • 234
2

In Snow Leopard you can type Command-Shift-Period from an Open or Save dialog box to toggle the invisibility of files.

You could also create a symbolic link to it that is visible as long as the target doesn't start with a period.

ln -s /pathtoyour/.htaccess /differentpath/open_htaccess
ridogi
  • 2,987
1

I found a couple of site which helped me to build a service using Automator which allows you to show and hide all files from the services menu (Finder > Service)

This site gave me the code: theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/

And this one told me what I needed to do to get the service to show in the menu. langui.sh/2009/11/19/building-services-using-automator-workflows-in-snow-leopard-10-6/

(sorry for no links, apparently I can only post one hyperlink until I have more reputation)

I ended up setting 'Service receives' to 'no input' in 'Finder.app' as this means that it is always shown in the services menu of Finder instead of having to have a file or folder selected.

You could probably make this work better so it only shows all files for the folder selected, but I don't know enough about shell scripting to know hoe to do this.

andyface
  • 143
0

A workaround could be to use a FTP client and to view the folder from there by using the application itself as a finder window. Only thing you have to do is to navigate to the desired folder. From what I understand you only want to view the folder structure and wether there is a htaccess in it or not. You can also use the FTP client to open the file in your preferred editor in case edits are necessary. Advantage: your finder stays neat and clean.