Hi I have a jsl want to use and run many files in different folders, then save the file with a name.
My solution is to put all the all the files path/directory into one excel file,
then run the path from row 1 to end.
There are 2 problems,
1. How to read the path file and use it to open the csv data,
2. How to save the file with a name that won't be overwritten, it can be the value of Column1,Row1,
Can some one give some idea how to start the jsl?
It could be something as below,
Open("C:\users\path.csv);
// open path file and read row 1,
Open("C:\users\............\file1.csv);
// 1st problem, this ............... path should be read from the path.csv row 1,
dt << save( "C:\users\file1_data1.csv" );
// after running, save the file, the 2nd problem is how to name the file, so it will not be overwrite by other files when saving, it can be random name but not be overwritten.
close all(Data Tables);