PhysicalFolderManagement.inc
872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
*
* Contains static functions for doing physical folder managements
* such as creating/deleting folders
*
* @author Rob Cherry, Jam Warehouse (Pty) Ltd, South Africa
* @date 19 January 2003
*
* @todo finished createFolder() function - find out correct mode
* @package lib.foldermanagement
*/
class PhysicalFolderManagement {
/**
* Create a physical directory on the file system
*
* @param Folder path
* @param Folder mode
*
*/
function createFolder($sPath) {
global $default;
return mkdir($sPath, $default->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);
}
}
?>