Folder operations
Functions to change the OS folder structure. USE WITH CARE
- deleteFolder
- deletes a complete folder from the OS file system (USE WITH CARE!)
- makeFolder
- creates a folder and sub folders if needed
examples
function TestFolders()
{
var testFolderPath = folders.temp + gvar.pss + "test";
if (makeFolder(testFolderPath))
deleteFolder(testFolderPath);
}