uMask); } /** * Delete a physical folder on the file system * * @param Folder path * * @return boolean true on successful delete, false otherwise */ function deleteFolder($sPath) { return rmdir($sPath); } function renameFolder($sOldPath, $sNewPath) { return rename($sOldPath, $sNewPath); } } ?>