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.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

How to open a folder in explorer

itzikd
Level II

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