---
name: File Name Insert
slug: file-name-insert-content
category: Automation
description: Insert characters at a specified position in filenames for batch renaming operations. Useful when adding a prefix, suffix, or date stamp into multiple filenames.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/file/file_name_insert_content"
language: Python
stars: 1331
forks: 297
install: "git clone https://github.com/CoderWanFeng/python-office"
added: 2026-07-20T06:48:43.086Z
last_synced: 2026-07-28T07:00:50.058Z
canonical_url: "https://dirskills.com/skills/file-name-insert-content"
---

# File Name Insert

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

**Install:** `git clone https://github.com/CoderWanFeng/python-office`

## README

# file_name_insert_content Skill

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

## 功能描述

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

## 所属分类

`office/skills/file/file_name_insert_content/`

## 调用方式

```python
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`

## 使用示例

```python
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`
