搜索当前路径下所有指定类型的文件,并以列表形式返回
在指定路径下搜索文件,支持按文件名、后缀、子目录等条件过滤,返回文件路径列表。
office/skills/file/get_files/
from office.skills.file import get_files
files = get_files(
path='./data',
name='report',
suffix='.txt',
sub=False,
level=0
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
path | str | 是 | - | 路径 |
name | str | 否 | '' | 文件名 |
suffix | str | 否 | None | 文件后缀 |
sub | bool | 否 | False | 是否搜索子目录 |
level | int | 否 | 0 | 搜索层级 |
list:文件路径列表
from office.skills.file import get_files
# 获取所有 .txt 文件
txt_files = get_files(path='./docs', suffix='.txt', sub=True)
# 获取所有名为 report 的文件
reports = get_files(path='./data', name='report', sub=True)office.api.file.get_files
2b1996b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.