如下所示:
# coding=utf-8 import os import os.path import re import array import cmd import pdb import pickle import tempfile import subprocess # rootPath = os.getcwd() # print rootPath rootPath = 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-8 import os import os.path import re import array import cmd import pdb import pickle import tempfile import subprocess import sys import getopt rootPath = "" nonCheckDirList = sys.argv[1:] opts, args = getopt.getopt(sys.argv[1:],"cs:",["cPath="]) for opt,arg in opts: if opt == '-c': rootPath = os.getcwd() elif opt in ("-s","--cPath"): rootPath = arg # 路径字典 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') 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_]*$',line1,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') if __name__ == '__main__': print ('main') pathDic['curPath'] = rootPath GetAllDir(rootPath) for key in pathDic: # print key GetAllFile(pathDic[key])
添加检查文件重名功能
# coding=utf-8 import os import os.path import re import array import cmd import pdb import pickle import tempfile import subprocess import sys import 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 检查文件名是否规范的实例详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
Python,文件名,规范
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“对Python 检查文件名是否规范的实例详解”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2025年01月11日
2025年01月11日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]