'Declaration
<HttpDeleteAttribute()> <RouteAttribute("api/storage/{*path}")> Public Function DeleteFile( _ ByVal path As String, _ Optional ByVal subpath As String _ ) As IActionResult
[HttpDelete()] [Route("api/storage/{*path}")] public IActionResult DeleteFile( string path, string subpath )
Parameters
- path
- The path.
- subpath
- The file name
Return Value
The result.