Updating Azure IStorageProvider to reflect new method

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-12-08 17:24:07 -08:00
parent 08ecb5ef3c
commit 42a8e39478

View File

@@ -146,6 +146,12 @@ namespace Orchard.Azure {
} }
} }
public void TryCreateFolder(string path)
{
EnsurePathIsRelative(path);
CreateFile(Combine(path, FolderEntry));
}
public void CreateFolder(string path) public void CreateFolder(string path)
{ {
EnsurePathIsRelative(path); EnsurePathIsRelative(path);