Don't strip path from directory prefix
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
812402f3ac
commit
bb16bd8e73
1 changed files with 6 additions and 1 deletions
|
@ -335,7 +335,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
|
||||||
if (is_array($result['CommonPrefixes'])) {
|
if (is_array($result['CommonPrefixes'])) {
|
||||||
foreach ($result['CommonPrefixes'] as $prefix) {
|
foreach ($result['CommonPrefixes'] as $prefix) {
|
||||||
$files[] = substr(trim($prefix['Prefix'], '/'), strlen($path));
|
$files[] = substr(trim($prefix['Prefix'], '/'), strlen($path));
|
||||||
$this->directoryCache[substr(trim($prefix['Prefix'], '/'), strlen($path))] = true;
|
$this->directoryCache[trim($prefix['Prefix'], '/')] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_array($result['Contents'])) {
|
if (is_array($result['Contents'])) {
|
||||||
|
@ -433,6 +433,11 @@ class AmazonS3 extends \OC\Files\Storage\Common {
|
||||||
|
|
||||||
public function is_dir($path) {
|
public function is_dir($path) {
|
||||||
$path = $this->normalizePath($path);
|
$path = $this->normalizePath($path);
|
||||||
|
|
||||||
|
if (isset($this->filesCache[$path])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return $this->isRoot($path) || $this->doesDirectoryExist($path);
|
return $this->isRoot($path) || $this->doesDirectoryExist($path);
|
||||||
} catch (S3Exception $e) {
|
} catch (S3Exception $e) {
|
||||||
|
|
Loading…
Reference in a new issue