使用 Python 重命名目录中的多个文件
要使用 Python 重命名目录中的多个文件,请考虑使用 os.rename(src , dst) 功能,方便重命名或移动文件和目录。这是一个示例代码片段:
import os
# Iterate through the files in the directory
for filename in os.listdir("."):
# Check if the filename starts with "cheese_"
if filename.startswith("cheese_"):
# Rename the file by removing "cheese_"
os.rename(filename, filename[7:])
在此示例代码中,os.listdir(".") 检索当前目录中的文件和目录列表。然后,代码遍历每个文件名并检查它是否以“cheese_”开头。如果是这样,代码将使用 os.rename(filename, filename[7:]) 更改文件名以删除“cheese_”。
通过实现此方法,您可以根据需要有效地重命名目录中的多个文件按照您指定的命名约定。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3