ActivateFolder
Set the project's active folder. Specified path can be relative or absolute and is not case sensitive.
BOOL ActivateFolder( LPCSTR lpszPath )
TRUE for success, otherwise FALSE.
EX1
// For this example to run, create a subfolder named "MySub" in the project's root folder. // Make sure that the root folder is active. // After the function executes, "MySub" will be the active folder. void Project_ActivateFolder_ex1() { string strPath = "/MySub"; if (Project.ActivateFolder(strPath)) out_str("Folder activation succeeded."); else out_str("Folder activation failed!"); }
origin.h