list_files
Retrieve files from Google Drive using filters like folder location, modification date, file type, or specific drive to organize and access your documents efficiently.
Instructions
List files from Google Drive with optional filters (driveId, folderId, modifiedAfter/Before, mimeType)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
driveId | No | ||
folderId | No | ||
mimeType | No | ||
modifiedAfter | No | ||
modifiedBefore | No | ||
pageSize | No |
Input Schema (JSON Schema)
{
"properties": {
"driveId": {
"type": "string"
},
"folderId": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"modifiedAfter": {
"type": "string"
},
"modifiedBefore": {
"type": "string"
},
"pageSize": {
"type": "number"
}
},
"type": "object"
}