SetCurrentDirectory

Prototype

void SetCurrentDirectory( String sPath )

Parameters

String sPath
The path to the new current directory.

Remarks

This module changes the current directory of the IML Studio process. Be aware that there is only one current directory. Each IMLPlus program does not have its own current directory.

Example
run GetPersonalFilesDirectory( path );
path = path + "Data Sets";
run SetCurrentDirectory( path );
run GetCurrentDirectory( path );
print path;
See Also

GetCurrentDirectory