cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Add "Open Enclosing Folder" to File menu

What inspired this wish list request?  Make it easier to access the file itself in Windows Explorer

 

What is the improvement you would like to see?  Add "Open Enclosing Folder" to the File menu so that from a data table, the user can quickly open the folder holding that file.

 

Why is this idea important?  Improves accessibility of JMP outputs.

 

 

2 Comments
hogi
Level XIII

Till the function is available, you could use:

dt = current data table();
file_path=dt <<Get Path;
filelength = Length( Word( -1, file_path, "\/" ) );
pathlength = Length( file_path) - filelength - 1;
path = Substr( file_path, 1, pathlength );
open(path)

 

BHarris
Level VII

Note, Mac users can just right-click on the document name in the window's title bar.  But Windows doesn't have anything like this.