get_file_info
Retrieve metadata about specific files within remote zip archives using URL and filename inputs to access file details without full archive downloads.
Instructions
Get information about a specific file in the remote zip archive.
Args:
url: URL of the remote zip file
filename: Name of the file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url",
"filename"
],
"title": "get_file_infoArguments",
"type": "object"
}