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 Name Insert

by CoderWanFeng

Insert characters at a specified position in filenames for batch renaming operations. Useful when adding a prefix, suffix, or date stamp into multiple filenames.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

file_name_insert_content Skill

批量重命名:在文件名中间插入字符

功能描述

在指定文件的文件名中间指定位置插入新的字符。

所属分类

office/skills/file/file_name_insert_content/

调用方式

from office.skills.file import file_name_insert_content

file_name_insert_content(
    file_path='./test.txt',
    insert_position=2,
    insert_content='_new'
)

参数说明

参数 类型 必填 默认值 说明
file_path str - 文件路径
insert_position int - 插入位置
insert_content str - 插入的内容

返回值

None

使用示例

from office.skills.file import file_name_insert_content
file_name_insert_content(file_path='./report.txt', insert_position=2, insert_content='_2024')

原始函数

office.api.file.file_name_insert_content