From: Robin Appelman Date: Sun, 29 May 2011 15:00:34 +0000 (+0200) Subject: recursive copy is now in OC_HELPER X-Git-Tag: v3.0~267^2~558^2~12 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=85cae2cc3237637d10727e6ae5c2fb51c5912142;p=nextcloud-server.git recursive copy is now in OC_HELPER --- diff --git a/lib/files.php b/lib/files.php index 594b96a9c5e..ac2129d0ac4 100644 --- a/lib/files.php +++ b/lib/files.php @@ -343,22 +343,6 @@ if(!function_exists('sys_get_temp_dir')) { } } -function recursive_copy($src,$dst) { - $dir = opendir($src); - @mkdir($dst); - while(false !== ( $file = readdir($dir)) ) { - if (( $file != '.' ) && ( $file != '..' )) { - if ( is_dir($src . '/' . $file) ) { - recursive_copy($src . '/' . $file,$dst . '/' . $file); - } - else { - copy($src . '/' . $file,$dst . '/' . $file); - } - } - } - closedir($dir); -} - global $FAKEDIRS; $FAKEDIRS=array();