Browse, search, organize, and govern persistent files across the platform with a single storage interface.
Browse Persistent Storage
Search at Scale
Organize & Rename
Move & Create
Monitor Usage
Clean Up Safely
_storage_manager
with an action
value.
LIST_FILES
Name | Definition | Format |
---|---|---|
directory_path | Directory to list. Defaults to the storage root. | String |
file_pattern | Filename pattern to match. | String |
recursive | Include subdirectories when listing. | Boolean |
sort_by | Sort criteria: name , size , date , type . | String |
limit | Max number of files to return. | Integer |
SEARCH_FILES
Name | Definition | Format |
---|---|---|
search_query | Terms or criteria to search for. | String |
search_type | name , content , metadata , or all . | String |
file_types | Restrict to extensions or MIME groups. | Array |
date_range | Filter by modified date range. | Object |
size_range | Filter by file size range. | Object |
max_results | Max results to return. | Integer |
search_type = "metadata"
when you have rich tags or attributes indexed for your files.RENAME_FILE
Name | Definition | Format |
---|---|---|
current_path | Full current file path. | String |
new_name | New filename to assign. | String |
preserve_extension | Keep the original extension. | Boolean |
MOVE_FILES
Name | Definition | Format |
---|---|---|
source_paths | One or more files to move. | Array |
destination_directory | Target directory. | String |
overwrite_existing | Replace files if they exist at destination. | Boolean |
CREATE_DIRECTORY
Name | Definition | Format |
---|---|---|
directory_path | Path for the new directory. | String |
create_parents | Auto-create missing parent folders. | Boolean |
DELETE_FILES
Name | Definition | Format |
---|---|---|
file_paths | Files to delete. | Array |
confirm_deletion | Must be true to proceed. | Boolean |
backup_before_delete | Create a backup before deletion. | Boolean |
GET_STORAGE_INFO
Name | Definition | Format |
---|---|---|
include_usage | Include current usage stats. | Boolean |
include_quotas | Include quota information. | Boolean |
LIST_FILES
or SEARCH_FILES
to identify targets.RENAME_FILE
, MOVE_FILES
, and CREATE_DIRECTORY
.GET_STORAGE_INFO
for usage and quotas.DELETE_FILES
using confirmations and optional backups.confirm_deletion = true
only after you have reviewed the target list, and enable backup_before_delete
for critical content.file_pattern
, date, and size filters to reduce result sets.