- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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!
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to open a folder in explorer
using JSL...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content