cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
itzikd
This widget could not be displayed.
" alt = "Level II"/> 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
This widget could not be displayed.
" alt = "Level II"/> 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 

 

 

 

Recommended Articles