cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles