list_files
Retrieve file listings from remote zip archives via HTTP, HTTPS, or FTP URLs without downloading the entire archive.
Instructions
Get list of files in a remote zip archive.
Args:
url: URL of the remote zip file (http, https, ftp supported)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "list_filesArguments",
"type": "object"
}