diff options
author | steckbrief <steckbrief@chefmail.de> | 2017-12-28 13:43:46 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2017-12-28 13:43:46 +0100 |
commit | 406f05cd56a6b4d8192ea00b15bb9edef68c7331 (patch) | |
tree | af632f6095ceae5f24b6a8d646d2087df1ab7e6b /functions.files.inc.php | |
parent | b28e7e4125cd8ce0f25dbcaaad14a2ef2446cdb2 (diff) |
functions for file and directory operations moved from functions.common to functions.files and recursive directory removal addedHEADmaster
Diffstat (limited to 'functions.files.inc.php')
-rw-r--r-- | functions.files.inc.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/functions.files.inc.php b/functions.files.inc.php new file mode 100644 index 0000000..4105eeb --- /dev/null +++ b/functions.files.inc.php @@ -0,0 +1,31 @@ +<?php +function getDirectoryContent($path) { + if (dir_exists($path)) { + return array_diff(scandir($path), array('..', '.')); + } + return []; +} + +function dir_exists($path) { + return file_exists($path) && is_dir($path); +} + +function rm_dir($path, $recursive = FALSE) { + if (!dir_exists($path)) { + return TRUE; + } + + if ($recursive) { + foreach (getDirectoryContent($path) as $item) { + $itemPath = $path.DIRECTORY_SEPARATOR.$item; + if (dir_exists($itemPath)) { + rm_dir($itemPath, $recursive); + } else { + unlink($itemPath); + } + } + } + + return rmdir($path); +} +?> |