summaryrefslogtreecommitdiffstats
path: root/functions.common.inc.php
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2017-12-28 13:43:46 +0100
committersteckbrief <steckbrief@chefmail.de>2017-12-28 13:43:46 +0100
commit406f05cd56a6b4d8192ea00b15bb9edef68c7331 (patch)
treeaf632f6095ceae5f24b6a8d646d2087df1ab7e6b /functions.common.inc.php
parentb28e7e4125cd8ce0f25dbcaaad14a2ef2446cdb2 (diff)
functions for file and directory operations moved from functions.common to functions.files and recursive directory removal addedHEADmaster
Diffstat (limited to 'functions.common.inc.php')
-rw-r--r--functions.common.inc.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/functions.common.inc.php b/functions.common.inc.php
index a9db566..e1d1f10 100644
--- a/functions.common.inc.php
+++ b/functions.common.inc.php
@@ -16,17 +16,6 @@ function generate_uuid() {
);
}
-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 format_size($size, $precision = 2) {
$sizes = ['bytes', 'Kb', 'Mb', 'Gb', 'Tb'];
$i = 0;