From 4398c259e6cf817160b48b33780b05d74cb5037d Mon Sep 17 00:00:00 2001 From: Sebastien Ros Date: Fri, 27 Apr 2012 12:40:14 -0700 Subject: [PATCH] #18643: Fixing ListFolders call to CreateFolder Work Item: 18643 --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 6e93dbbc3..521f9c1cf 100644 --- a/src/Orchard.Azure/AzureFileSystem.cs +++ b/src/Orchard.Azure/AzureFileSystem.cs @@ -137,7 +137,7 @@ namespace Orchard.Azure { if (!Container.DirectoryExists(String.Concat(_root, path)) ) { try { - CreateFolder(String.Concat(_root, path)); + CreateFolder(path); } catch ( Exception ex ) { throw new ArgumentException(string.Format("The folder could not be created at path: {0}. {1}",