diff --git a/src/Orchard.Azure/AzureFileSystem.cs b/src/Orchard.Azure/AzureFileSystem.cs index 288e2fcec..310964b15 100644 --- a/src/Orchard.Azure/AzureFileSystem.cs +++ b/src/Orchard.Azure/AzureFileSystem.cs @@ -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)); } }