#19453: Correcting implementation of AzureFileSystem.FolderExists

Work Item: 19453

--HG--
branch : 1.x
This commit is contained in:
Sipke Schoorstra
2013-03-05 15:17:21 +01:00
parent d6ba9830b3
commit 6c24f4a57f

View File

@@ -103,7 +103,7 @@ namespace Orchard.Azure {
public bool FolderExists(string path) {
using (new HttpContextWeaver()) {
return Container.BlobExists(String.Concat(_root, path));
return Container.DirectoryExists(String.Concat(_root, path));
}
}