diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-22 16:43:11 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-22 16:43:11 +0100 |
commit | d8137fdf66a513d0de4bb234d0427ff27ca40106 (patch) | |
tree | d02f9782f8e7e77670f03469847b3044e1172f53 /lib/public/files.php | |
parent | 5b949596867c986916568e5bea2003e04102aa71 (diff) | |
download | nextcloud-server-d8137fdf66a513d0de4bb234d0427ff27ca40106.tar.gz nextcloud-server-d8137fdf66a513d0de4bb234d0427ff27ca40106.zip |
return both, count and result if the operation succeeded or failed. Maybe in some cases it is useful to know how much bytes where copied
Diffstat (limited to 'lib/public/files.php')
-rw-r--r-- | lib/public/files.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/files.php b/lib/public/files.php index c2945b200e8..700bf574537 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -62,7 +62,8 @@ class Files { * @return int the number of bytes copied */ public static function streamCopy( $source, $target ) { - return(\OC_Helper::streamCopy( $source, $target )); + list($count, $result) = \OC_Helper::streamCopy( $source, $target ); + return $count; } /** |