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

Group Files by Name

by CoderWanFeng

Group files into different directories based on file name rules, such as prefixes or patterns. Use this when you need to automatically organize files by name, for example, sorting documents into folders according to their naming conventions.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

group_by_name Skill

按名称分组整理文件

功能描述

按文件名的前缀或规则,将文件分组整理到不同目录中。

⚠️ TODO: 该功能为历史功能,行为待测试。

所属分类

office/skills/file/group_by_name/

调用方式

from office.skills.file import group_by_name

group_by_name(
    path='./data',
    output_path=None,
    del_old_file=None
)

参数说明

参数 类型 必填 默认值 说明
path str - 路径
output_path str None 输出路径
del_old_file bool None 是否删除旧文件

返回值

None

原始函数

office.api.file.group_by_name