Create a Subfolder and Add it to given path.
Folder AddFolder( LPCSTR lpcszFolderPath )
Return a added folder
EX1
void Addfolder_Ex1() { Folder fld = Project.ActiveFolder(); if(fld.IsValid()) { string strPath = "./Sub1"; Folder fldsub1 = fld.AddFolder(strPath); printf("The path of Current folder is: %s", fldsub1.GetPath()); return; } printf("there is no active folder in current project"); }
OriginC:Folder::GetFolder
origin.h