From 6c24f4a57ff0c3f093851c0d0965dea6062b2d4f Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Tue, 5 Mar 2013 15:17:21 +0100 Subject: [PATCH] #19453: Correcting implementation of AzureFileSystem.FolderExists Work Item: 19453 --HG-- branch : 1.x --- src/Orchard.Azure/AzureFileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } }