Creates a new folder in the local filesystem.
See Also: FolderExists
Example - Create folder
function OnStart()
{
app.MakeFolder("myFolder");
if(app.FolderExists("myFolder"))
app.ShowPopup("myFolder exists!");
else
app.ShowPopup("myFolder does not exist!");
}