欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将文件名中的空格替换,重命名

程序员文章站 2024-02-26 11:10:52
...

 

import os
path="/data/glusterfs_hz_cv/11119841/night_people/badcase/org_test_data_clear"
items=os.listdir(path)
for item in items:
    print("img name=",item)
    itemPath=os.path.join(path,item)
    newName=item.replace(" ", "_")
    newName=newName.replace("#", "_")
    itemNewPath=os.path.join(path,newName)
    os.rename(itemPath, itemNewPath)

 

相关标签: 运行程序