- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
MFI from a selectable location
Hi, I'm quite new to the JSL world, or to coding in general. I would like to save myself some time-consuming work with a few simple scripts.
As in this case, I would like to automate the MFI. To do this, I copied the script below from the MFI dialog and added the “Pick Directory” command.
My only problem is that the "Select a directory" dialog appears twice every time. After I chose the storage location twice, the rest of the script and the commands following the MFI worked without any problems.
Multiple File Import(
<
This post originally written in German and has been translated for your convenience. When you reply, it will also be translated back to German.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: MFI from a selectable location
It might be enough if you move Pick Directory() outside << Set Folder
Names Default To Here(1);
sel_dir = Pick Directory("Select a directory.", "$Desktop");
Multiple File Import(
<<Set Folder(sel_dir),
<<Set Subfolders(0),
<<Set Name Filter("*.meas9206;"),
<<Set Name Enable(1),
<<Set Size Enable(0),
<<Set Date Enable(0),
<<Set Add File Name Column(1),
<<Set Add File Size Column(0),
<<Set Add File Date Column(0),
<<Set Import Mode("CSVData"),
<<Set Charset("Vermutete Codierung"),
<<Set Stack Mode("Stack Similar"),
<<Set CSV Has Headers(0),
<<Set CSV Allow Numeric(1),
<<Set CSV First Header Line(1),
<<Set CSV Number Of Header Lines(1),
<<Set CSV First Data Line(25),
<<Set CSV EOF Other(";"),
) << Import Data;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: MFI from a selectable location
It might be enough if you move Pick Directory() outside << Set Folder
Names Default To Here(1);
sel_dir = Pick Directory("Select a directory.", "$Desktop");
Multiple File Import(
<<Set Folder(sel_dir),
<<Set Subfolders(0),
<<Set Name Filter("*.meas9206;"),
<<Set Name Enable(1),
<<Set Size Enable(0),
<<Set Date Enable(0),
<<Set Add File Name Column(1),
<<Set Add File Size Column(0),
<<Set Add File Date Column(0),
<<Set Import Mode("CSVData"),
<<Set Charset("Vermutete Codierung"),
<<Set Stack Mode("Stack Similar"),
<<Set CSV Has Headers(0),
<<Set CSV Allow Numeric(1),
<<Set CSV First Header Line(1),
<<Set CSV Number Of Header Lines(1),
<<Set CSV First Data Line(25),
<<Set CSV EOF Other(";"),
) << Import Data;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: MFI from a selectable location
Thanks. i its works for me. I tried some similiar, with "dir" instead of "sel_dir, but that doesent worked well. Maybe i had Synthax Failure.