cleanup_images
Remove all downloaded image files from a specified directory to free up storage and maintain organization after web scraping tasks.
Instructions
清理所有下载的图片文件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputDir | No | 要清理的图片目录路径(可选,默认为 ./scraped-images) |
Input Schema (JSON Schema)
{
"properties": {
"outputDir": {
"description": "要清理的图片目录路径(可选,默认为 ./scraped-images)",
"type": "string"
}
},
"type": "object"
}