cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
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