cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • See how to interactively organize and restructure data for analysis. Register for May 29 webinar, 2pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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
jules
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!

@jules 

 

 

 

View solution in original post

2 REPLIES 2
itzikd
Level II

Re: How to open a folder in explorer

using JSL...
jules
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!

@jules 

 

 

 

Recommended Articles