cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
blue1994
Level III

Automatically save the file to folder

Hi, does anyone know if I select the any file from desktop,eg: CSV, after i open that file,  it can automatically save into the working folder by using JSL? 

Thanks

 

1 REPLY 1
txnelson
Super User

Re: Automatically save the file to folder

Here is a simple script that does what you want

names default to here( 1 );
// Pick the file to open
myPath = Pick File("tdisplayed text string", "path to initial folder");
dt = open(myPath);
dt << save("path to work directory.jmp);

Details on Pick File, Open and Save functions are found in the Scripting Index:

     Help==>Scripting Index

Jim