Search Specify Type File

在指定路径下搜索指定类型的文件(如 .txt、.pdf)。当用户提到按类型搜索文件、找某类文件、检索文件时使用。

coderwanfeng 757b0f1 2 files · 1.2 KB Updated

File contents

search_specify_type_file Skill

在当前路径下搜索指定类型的文件

功能描述

在指定路径下搜索指定类型的文件。

所属分类

office/skills/file/search_specify_type_file/

调用方式

from skills.file import search_specify_type_file

search_specify_type_file(
    file_path='./data',
    file_type='.txt'
)

参数说明

参数 类型 必填 默认值 说明
file_path str - 文件路径
file_type str - 文件类型(如 .txt.py

返回值

None(结果直接打印输出)

使用示例

from skills.file import search_specify_type_file
search_specify_type_file(file_path='./docs', file_type='.pdf')

原始函数

office.api.file.search_specify_type_file

coderwanfeng/python-office/tree/main/skills/file/search_specify_type_file commit 757b0f1568

Frequently asked questions

npx skillmds@latest add coderwanfeng/search-specify-type-file