For the latest version of JMP Help, visit JMP.com/help.


Scripting Guide > Types of Data > Path Variables > Relative Paths in Variables
Publication date: 06/21/2023

Relative Paths in Variables

If you plan to use relative paths in variables, you must set the default directory. Then any path not preceded by a drive letter is relative to the default directory. Here is an example:

Set Default Directory( "C:\users\smith\data" );

To return the value of the default directory, use Get Default Directory().

Get Default Directory(); // returns "C:\users\smith\data"

So the following expression resolves as C:\users\smith\data\cleansers.jmp:

Open("cleansers.jmp");
Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).