Web API Core | ComponentOne
C1.Web.Api.Storage Namespace / StorageController Class / CreateFolder Method
The path.
The sub path.

In This Topic
    CreateFolder Method (StorageController)
    In This Topic
    Create new folder with path
    Syntax
    'Declaration
     
    
    <HttpPostAttribute()>
    <RouteAttribute("api/storage/Folder/{*path}")>
    Public Function CreateFolder( _
       ByVal path As String, _
       Optional ByVal subpath As String _
    ) As IActionResult
    [HttpPost()]
    [Route("api/storage/Folder/{*path}")]
    public IActionResult CreateFolder( 
       string path,
       string subpath
    )

    Parameters

    path
    The path.
    subpath
    The sub path.
    See Also