tags:

views:

24

answers:

2

What shell command can i use to launch/open a folder in mac os x? I will be executing it in .NET

+3  A: 

open

Sjoerd
+2  A: 

"open" with a folder argument will open finder with given folder opened. With files it will use the default file associated.

ie

open ~/Documents/

Løkling