python --批量重命名文件名】的更多相关文章

# -*- coding: utf-8 -*- import os path = "d:\\curl\data\\" for file in os.listdir(path): print file if(os.path.isfile(os.path.join(path,file))==True): if file.find('.')>0: newname="new_"+file os.rename(os.path.join(path,file),os.pat…
说明 由于在处理图片数据和其他数据时,经常需要对数据进行批量重命名操作,每次使用时都需要重写,非常不便,因此记录下重命名代码方便后续使用. 文件结构说明 参数说明: path为输入路径 image_type为重命名文件类型 file_01, file_02...为重命名的文件 代码部分 # 批量重命名 # 2020-12-10 import os def rename(filepath, image_type): ''' 对filepath下的文件进行重命名 :param filepath: 存…
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 打开文件 path = "/home/landv/Desktop/l/" dirs = os.listdir( path ) # 输出所有文件和文件夹 for file in dirs: if os.path.splitext(file)[1] == '.jpg': new=file[0:6]#截取文件名前六个字符 os.rename(file,new)#进行重命名 #…
假设目录下面有这样一系列命令杂乱的文件: OPENFOAM -TRAINING- PART- #1.pdf OPENFOAM - TRAINING- PART- #2.pdf OPENFOAM- TRAINING- PART-#3 .pdf 不仅序号被放在最后,而且还有许多多余的空格.现在批量将这些文件重命名,去掉#,并把序号挪到最前面. import os os.chdir('/Users/<>/python_learn/openfoam') # 把当前工作目录切换到需要进行操作的目录 fo…
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' 批量修改照片文件名称的Python脚本程序. 遍历指定目录(含子目录)的照片文件,根据拍照时间将照片文件名修改为以下格式: 20140315_091230.jpg (%Y%m%d_%H%M%S) 由于文件名已经精确到秒,理论上重名的概率非常小. 如果需要考虑到重名的问题,可以对本程序进行进一步的优化. !该程序需要安装exifread模块,否则无法使用. 例如,Linux/Mac OS X下命令行…
批量替换文件名中重复字符: # -*- coding: UTF-8 -*- import os path = raw_input("请输入文件夹路径:") oldname = raw_input("输入被替换的字符:") newname = raw_input("输入新的字符(如为空直接回车):") for file in os.listdir(path): if os.path.isfile(os.path.join(path,file))==…
#!/usr/bin/python # -*- coding: UTF-8 -*- # -*- coding:utf8 -*- import os from string import digits class BatchRename(): def __init__(self): #文件存放目录 self.spath = 'Sensetime/' self.dpash='Sensetime-rename/' self.endpash='Sensetime-end/' def rename(sel…
某无聊的下午的一个小需求 import os dirPath = r'' #路径 format = r'' #后缀 name = 0 for file in os.listdir(dirPath): oldPath = '%s\%s'%(dirPath, file) newPath = '%s\%s.%s'%(dirPath, name, format) name += 1 os.rename(oldPath, newPath) ...... 然后今晚(20160729)想要根据文件内容重命名来…
# batch_file_rename.py # Created: 6th August 2012 ''' This will batch rename a group of files in a given directory, once you pass the current and new extensions ''' __author__ = 'Craig Richards' __version__ = '1.0' import os import sys def batch_rena…
import osll=os.listdir(".")c=0for f in ll: c=c+1 os.rename(f,str(c)+".jpg")…