AzureBlobFileSystem.AzureBlobStorageProvider.CreateFolder C# (CSharp) Method

CreateFolder() public method

public CreateFolder ( string path ) : void
path string
return void
        public void CreateFolder(string path)
        {
            string fullPath = path;
            var container = EnsurePathIsRelativeAndEnsureContainer(ref path);

            container.EnsureDirectoryDoesNotExist(path);

            CreateFile(fullPath.Trim('/') + "/");
        }