cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
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