BlogEngine.Core.Providers.BlogService.CreateDirectory C# (CSharp) Method

CreateDirectory() static private method

Creates a directory at a specific path
Virtual path is the path starting from the /files/ containers The entity is created against the current blog id
static private CreateDirectory ( string VirtualPath ) : Directory
VirtualPath string The virtual path to be created
return Directory
        internal static Directory CreateDirectory(string VirtualPath)
        {
            return FileSystemProvider.CreateDirectory(VirtualPath);
        }