|
|
|
|
@ -114,7 +114,7 @@ class Scanner { |
|
|
|
|
$size = 0; |
|
|
|
|
if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { |
|
|
|
|
\OC_DB::beginTransaction(); |
|
|
|
|
while ($file = readdir($dh)) { |
|
|
|
|
while ($file = utf8_encode(readdir($dh))) { |
|
|
|
|
$child = ($path) ? $path . '/' . $file : $file; |
|
|
|
|
if (!$this->isIgnoredDir($file)) { |
|
|
|
|
$data = $this->scanFile($child, $recursive === self::SCAN_SHALLOW); |
|
|
|
|
|