webdav_read_multiple_files
Read contents from multiple WebDAV files simultaneously to efficiently access and process multiple documents at once, saving time on individual file operations.
Instructions
Read the contents of multiple files simultaneously
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | Array of file paths to read |
Input Schema (JSON Schema)
{
"properties": {
"paths": {
"description": "Array of file paths to read",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}