Thursday, March 10, 2011

How to make a file or folder invisible in Mac OS X Finder

Hide file or folder:

#!/bin/bash

setfile -a V filename

Make it visible again:

#!/bin/bash

setfile -a v filename

setfile is a part of Apple’s Developer Tools, that can be installed from Mac OS X installation DVD.

No comments:

Post a Comment