| 1 | <?php |
||
| 8 | class FileSystemUtils |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Set the current working directory if it was specified. |
||
| 12 | */ |
||
| 13 | public static function applyDir($dir) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Create a directory at the specified path. Also create any parent |
||
| 26 | * directories that do not yet exist. |
||
| 27 | * |
||
| 28 | * @param $path The directory path to create. |
||
| 29 | * @return boolean |
||
| 30 | */ |
||
| 31 | public static function mkdirParents($path) |
||
| 41 | } |
||
| 42 |