void SetCurrentDirectory( String sPath )
String sPath
The path to the new current directory.
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.
run GetPersonalFilesDirectory( path ); path = path + "Data Sets"; run SetCurrentDirectory( path ); run GetCurrentDirectory( path ); print path;