🏷️
AutomationPython

Batch Add Suffix to Filenames

by CoderWanFeng

Batch Add Suffix to Filenames is an Automation skill for Claude Code, published by CoderWanFeng in python-office.

1.3K stars299 forkson CoderWanFeng/python-officeAdded 2026/07/20Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Batch Add Suffix to Filenames
Copy Batch Add Suffix to Filenames into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/file/file_name_add_postfix ~/.claude/skills/file_name_add_postfix

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

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

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/file/file_name_add_postfix/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/file_name_add_postfix
Collection
One of 50 skills cataloged from this repository
Category
Automation2226 skills

What Batch Add Suffix to Filenames does

Facilitates batch renaming of files by appending a specified suffix. Useful when you need to add version numbers, backup tags, or other identifiers to multiple files at once.

Batch Add Suffix to Filenames is cataloged under Automation on DirSkills. Batch Add Suffix to Filenames comes from a repository tagged office, pip, pypi, python and weixin.

Documentation

README

file_name_add_postfix Skill

批量重命名:给文件名增加后缀

功能描述

给指定文件的文件名增加指定的后缀。

所属分类

office/skills/file/file_name_add_postfix/

调用方式

from skills.file import file_name_add_postfix

file_name_add_postfix(
    file_path='./test.txt',
    postfix_content='_backup'
)

参数说明

参数 类型 必填 默认值 说明
file_path str - 文件路径
postfix_content str - 后缀内容

返回值

None

使用示例

from skills.file import file_name_add_postfix
file_name_add_postfix(file_path='./data.txt', postfix_content='_v1')

原始函数

office.api.file.file_name_add_postfix

Frequently asked about Batch Add Suffix to Filenames

  • What else does CoderWanFeng publish alongside Batch Add Suffix to Filenames?

    Batch Add Suffix to Filenames is one of 50 skills that DirSkills catalogs from CoderWanFeng/python-office, the repository it ships in. Its siblings there include Add Image Watermark, Add Line by Type and Add Text Watermark. Each one is a separate skill with its own page in this directory, installs the same way Batch Add Suffix to Filenames does, and is maintained by CoderWanFeng in that same repository. The rest of the collection is listed on the CoderWanFeng/python-office page.

  • How does Batch Add Suffix to Filenames compare to other Automation skills?

    Batch Add Suffix to Filenames ranks #646 by stars among the 2226 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Batch Add Suffix to Filenames against them. Open each page to compare what they document and how they install.