cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
itzikd
Level II

How to open a folder in explorer

is there a way to open a folder in windows explorer using JMP?

1 ACCEPTED SOLUTION

Accepted Solutions
julian
Community Manager Community Manager

Re: How to open a folder in explorer

Hi @itzikd,

 

On a Windows machine you should be able to do that with Open():

 

Open("c:\Applications\");

 

On a Mac it will require use of RunProgram(): 

RunProgram(
	Executable( "/usr/bin/open" ),
	options({"/HDD/Applications/"})
);

 

I hope this helps!

@julian 

 

 

 

View solution in original post

2 REPLIES 2
itzikd
Level II

Re: How to open a folder in explorer

using JSL...
julian
Community Manager Community Manager

Re: How to open a folder in explorer

Hi @itzikd,

 

On a Windows machine you should be able to do that with Open():

 

Open("c:\Applications\");

 

On a Mac it will require use of RunProgram(): 

RunProgram(
	Executable( "/usr/bin/open" ),
	options({"/HDD/Applications/"})
);

 

I hope this helps!

@julian