mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
#18643: Fixing ListFolders call to CreateFolder
Work Item: 18643 --HG-- branch : 1.x
This commit is contained in:
@@ -137,7 +137,7 @@ namespace Orchard.Azure {
|
|||||||
|
|
||||||
if (!Container.DirectoryExists(String.Concat(_root, path)) ) {
|
if (!Container.DirectoryExists(String.Concat(_root, path)) ) {
|
||||||
try {
|
try {
|
||||||
CreateFolder(String.Concat(_root, path));
|
CreateFolder(path);
|
||||||
}
|
}
|
||||||
catch ( Exception ex ) {
|
catch ( Exception ex ) {
|
||||||
throw new ArgumentException(string.Format("The folder could not be created at path: {0}. {1}",
|
throw new ArgumentException(string.Format("The folder could not be created at path: {0}. {1}",
|
||||||
|
|||||||
Reference in New Issue
Block a user