Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

📁
AutomationPython

File List to Excel

by CoderWanFeng

Given a directory path, this skill exports all filenames in that directory to an Excel spreadsheet. Useful for creating file inventories and cataloging folder contents.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

output_file_list_to_excel Skill

整理当前文件夹下的文件名到一个 Excel 里

功能描述

将指定目录下的所有文件名整理到一个 Excel 文件中。

所属分类

office/skills/file/output_file_list_to_excel/

调用方式

from office.skills.file import output_file_list_to_excel

output_file_list_to_excel(dir_path='./data')

参数说明

参数 类型 必填 默认值 说明
dir_path str - 目录路径

返回值

None

使用示例

from office.skills.file import output_file_list_to_excel
output_file_list_to_excel(dir_path='./我的文件夹')

原始函数

office.api.file.output_file_list_to_excel