时间:2021-05-22
如下所示:
# coding=utf-8import osimport os.pathimport reimport arrayimport cmdimport pdbimport pickleimport tempfileimport subprocess # rootPath = os.getcwd()# print rootPathrootPath = raw_input('The Check Path:')nonCheckDir = raw_input('The Non Check DirName(DirName1;DirName2):')nonCheckDirList = []if nonCheckDir: nonCheckDirList = nonCheckDir.split(';')# 路径字典pathDic = {} # 新建文件夹 os.path.isdir(rootdir+'/logout') 判断指定目录下该文件夹是否存在if not os.path.isdir(rootPath+'/logout'): os.makedirs(rootPath + '/logout')logPath=os.path.join(rootPath,'logout') nonstandard_filename_path = open(logPath+'/nonstandard_filename_path.txt','w') # 标准的符号库num = "0123456789"word = "abcdefghijklmnopqrstuvwxyz"sym = "_."# 符号库symBank = []for key in word: symBank.append(key)for key in num: symBank.append(key)for key in sym: symBank.append(key) def GetAllDir(getPath): # print (getPath) paths = os.listdir(getPath) for dirName in paths: dirPath = os.path.join(getPath,dirName) if os.path.isdir(dirPath) and dirName != '.svn': # print dirPath relPath = dirPath[len(rootPath)+1:len(dirPath)] # print relPath if not nonCheckDirList.__contains__(relPath): pathDic[relPath] = dirPath GetAllDir(dirPath) def GetAllFile(getPath): files = os.listdir(getPath) for fileName in files: filePath = os.path.join(getPath,fileName) if fileName.endswith('.png') or fileName.endswith('.PNG'): fileName = fileName[0:fileName.index('.')] if not set(fileName).issubset(symBank): # print fileName # print filePath nonstandard_filename_path.write(filePath + '\n') else: # (r'_[\d]*[x|X][\d]*\d') 正则表达式 (_100x100) sign = re.search(r'_[\d]*[x|X][\d]*\d',fileName,re.M|re.I) if sign: nonstandard_filename_path.write(filePath + '\n') if __name__ == '__main__': print ('main') pathDic['curPath'] = rootPath GetAllDir(rootPath) for key in pathDic: # print key GetAllFile(pathDic[key]) # line = "image_500100000" # obj = re.search(r'_[\d]*[x|X][\d]*\d',line,re.M|re.I) # line = line.replace(obj.group(),'=') # if obj: # print obj.group() # else: # print ("==-") # line1 = "image_500x100" # obj1 = re.search(r'[a-z0-9_]*',line1,re.M) # print obj1.group()新建bat后缀文件
find_nonstandard_name.exe -c@pause修改后脚本
添加检查文件重名功能
# coding=utf-8import osimport os.pathimport reimport arrayimport cmdimport pdbimport pickleimport tempfileimport subprocessimport sysimport getopt nonCheckDirList = sys.argv[1:]rootPath = os.getcwd()checkRepetPathList = []if nonCheckDirList: rootPath = os.path.realpath(os.path.join(os.getcwd(),nonCheckDirList[0])) if nonCheckDirList[0] == "./": rootPath = os.getcwd() for _path in nonCheckDirList: # -- 检查重命名路径 _cmdRepet = _path[0:2] if _cmdRepet == "/r": repetPath = _path[len(_cmdRepet):len(_path)] print repetPath checkRepetPathList.append(repetPath)print rootPath + '\n'# 路径字典pathDic = {}# 重名路径字典repetDic = {}# 新建文件夹 os.path.isdir(rootdir+'/logout') 判断指定目录下该文件夹是否存在 # if not os.path.isdir(rootPath+'/logout'):# os.makedirs(rootPath + '/logout')# logPath=os.path.join(rootPath,'logout')logPath = os.getcwd()nonstandard_filename_path = open(logPath+"\\"+u"不规范命名文件".encode("GBK") + ".txt",'w') def GetAllDir(getPath): # print (getPath) paths = os.listdir(getPath) for dirName in paths: dirPath = os.path.join(getPath,dirName) if os.path.isdir(dirPath) and dirName != '.svn': # print dirPath relPath = dirPath[len(rootPath)+1:len(dirPath)] # print relPath if not nonCheckDirList.__contains__(relPath): pathDic[relPath] = dirPath GetAllDir(dirPath) def GetAllFile(getPath): files = os.listdir(getPath) for fileName in files: filePath = os.path.join(getPath,fileName) if fileName.endswith('.png') or fileName.endswith('.PNG'): fileName = fileName[0:fileName.index('.')] firstSign = re.search(r'^[a-z0-9_]*$',fileName,re.M) if firstSign: # print filePath # (r'_[\d]*[x|X][\d]*\d') 正则表达式 (_100x100) sign = re.search(r'_[\d]*[x|X][\d]*\d', fileName, re.M | re.I) if sign: print fileName nonstandard_filename_path.write(filePath + '\n') else: print fileName nonstandard_filename_path.write(filePath + '\n') def CheckRepetFile(getPath): if checkRepetPathList: paths = os.listdir(getPath) for dirName in paths: dirPath = os.path.join(getPath, dirName) if os.path.isdir(dirPath) and dirName != '.svn': # print dirPath relPath = dirPath[len(rootPath) + 1:len(dirPath)] # print relPath repetDic[relPath] = dirPath CheckRepetFile(dirPath) imageList = []repetImagePath = []def GetCheckRepetFile(getPath): files = os.listdir(getPath) for fileName in files: filePath = os.path.join(getPath, fileName) if fileName.endswith('.png') or fileName.endswith('.PNG'): # print filePath imageList.append(fileName) repetImagePath.append(filePath) repet_filename_path = open(logPath+"\\"+u"重复命名文件".encode("GBK") + ".txt",'w') if __name__ == '__main__': # print ('main') pathDic['curPath'] = rootPath GetAllDir(rootPath) for key in pathDic: # print key GetAllFile(pathDic[key]) print '\n' + "The Logout Path:" + logPath+"\\"+u"不规范命名文件".encode("GBK") + ".txt" repetDic['curPath'] = rootPath # 检查重复文件路径列表 for __path in checkRepetPathList: _repetPath = os.path.join(rootPath, __path) CheckRepetFile(_repetPath) # 遍历路径获得所有图片 for key in repetDic: GetCheckRepetFile(repetDic[key]) _newImageList = [] for image in imageList: repetCount = imageList.count(image) if repetCount > 1 : if not image in _newImageList: _newImageList.append(image) for repetImage in _newImageList: print repetImage repet_filename_path.write(repetImage + '\n') for repetPathPath in repetImagePath: fileNameName = os.path.basename(repetPathPath) if repetImage == fileNameName: repet_filename_path.write(repetPathPath + '\n') # print repetPathPath print '\n' + "The Logout Path:" + logPath+"\\"+u"重复命名文件".encode("GBK") + ".txt"以上这篇对Python 检查文件名是否规范的实例详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
is_file()函数检查指定的文件名是否是正常的文件。is_file—Tellswhetherthefilenameisaregularfile用法booli
php判断文件上传图片格式的实例详解判断文件图片类型,$type=$_FILES['image']['tmp_name'];//文件名//$type=$this
is_file()函数检查指定的文件名是否是正常的文件。is_file—Tellswhetherthefilenameisaregularfile用法:bool
本文实例讲述了Python实现批量修改文件名的方法。分享给大家供大家参考。具体如下:下载了评书《贺龙传奇》,文件名中却都含有xxx有声下载,用脚本将其去掉。脚本
本文实例讲述了python实现多进程按序号批量修改文件名的方法。分享给大家供大家参考,具体如下:说明文件名命名方式如图,是数字序号开头,但是中间有些文件删掉了,