将文件名中的空格替换,重命名
程序员文章站
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)