webdav_range_request
Read specific byte ranges from files on remote WebDAV servers using HTTP partial content requests to download portions of large files without transferring the entire file.
Instructions
Read a specific byte range from a file on a remote WebDAV server (similar to HTTP 206 Partial Content)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
range | Yes | Byte range in format "bytes=0-499" (first 500 bytes), "bytes=500-" (from byte 500 to end), or "0-499" (range from start to end) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"minLength": 1,
"type": "string"
},
"range": {
"description": "Byte range in format \"bytes=0-499\" (first 500 bytes), \"bytes=500-\" (from byte 500 to end), or \"0-499\" (range from start to end)",
"type": "string"
}
},
"required": [
"path",
"range"
],
"type": "object"
}