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.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hutan2
Level I

I would like to find JSL codes to open most recent file saved in folder. Would you help? thanks

I would like to find JSL codes to open most recent file saved in folder.  Would you help? thanks

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

Re: I would like to find JSL codes to open most recent file saved in folder. Would you help? thanks

In JMP 11 there is a function Last Modification Date() that should be useful here.

For example:

mypath = Pick directory();

files=files in directory(mypath);

{t,p}={0,1};

For( i = 1, i <= N Items( files ), i++,

  ti = Last Modification Date( mypath || files[i] );

  If( ti > t, t = ti;  p = i)

);

Open(mypath||files[p]);

Recommended Articles