Path variables are shortcuts to directories or files. Rather than enter the entire path to the directory or file, you use the path variable in a script. A path variable is a special type of string and is always contained within double quotation marks.
One common predefined path variable in JMP is $SAMPLE_DATA. This variable points to the sample data folder in your JMP or JMP Pro installation folder. The following example opens the Big Class.jmp sample data table.
Open( "$SAMPLE_DATA/Big Class.jmp" );
Defines the folder where the add-in is stored. The second argument in Register Addin() is assigned to this variable. See Register Addin("unique_id", "home_folder", <named_arguments>) JSL Syntax Reference for details.
|
When you create an add-in through Add-In Builder, the $ADDIN_HOME definition is created based on your computer’s operating system:
Pick File( "$ADDIN_HOME(’com.jmp.addins.test’)" ); To see if the directory exists, run the script Is Directory("$ADDIN_HOME");. If the folder exists, 1 is returned.
|
||||||||
To see if the directory exists, run the script Is Directory("$ALL_HOME");. If the folder exists, 1 is returned.
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
|||||||||
|
To see the definition of any path variable, use the function Get Path Variable:
Get Path Variable( "HOME" );
"/C:/Users/<username>/AppData/Roaming/SAS/JMP/13/"
Note that you don’t include a dollar sign for Set Path Variable() or Get Path Variable(). But you must include the dollar sign when using the variable in a script.
Make sure to include a trailing slash after the path variable. In the following example, the root name "Big Class" is assigned to the dtName variable. The Open() expression evaluates $SAMPLE_DATA and the trailing slash and then appends the dtName value along with the file extension .jmp.
dtName = "Big Class";
dt = Open( "$SAMPLE_DATA/" || dtName || ".jmp" );
C:/Program Files/SAS/JMP/13/Samples/Data/Big Class.jmp
Without the slash that follows $SAMPLE_DATA, the path is interpreted as:
C:/Program Files/SAS/JMP/13/Samples/DataBig Class.jmp