Python脚本解决一些繁琐的测试问题

2023-12-13 2:56:06 网络知识 匿名

Python脚本:根据文件列表“stab_case.txt”上面的文件名称,删除指定文件夹(包括子文件夹)下面的文件。

#coding=utf-8

importos

WORKDIR=os.getcwd()#不必修改

#提供局排错误案例信息的报告全集,除非生成的报告名改变否则不必改动

g_ResultTxtName=['stab_case.txt',]

#如果把该程序拷到Cases\\Case下则不需要设置

#否则写成如这样的案例存放的绝对路径'E:\\render\\Cases\\Case'

CasePath=WORKDIR

defdeleteFile(filepath):

try:

ifnotos.path.exists(filepath):

printfilepath,"notexist!"

return0

ifnotos.path.isfile(filepath):

printfilepath,"isnotafile!"

return0

os.remove(filepath)

print"Delete",filepath,"succeded!"

return1

except:

print"Delete",filepath,"failed!"

pass

return0

defanalyseReport(txtPath):

pathList=[]

try:

report=open(txtPath,'r')

exceptException,ex:

printstr(Exception),':',str(ex)

report.close()

returnpathList

forlineinreport:

iflen(line)<=len('\n'):

continue

#line=line.decode('cp936')

pathList.append(line[:-1])#去掉开头的\t和最后的\n

report.close()

pathList.sort()

returnpathList

if'__main__'==__name__:

foriteming_ResultTxtName:

txtPath=os.path.join(WORKDIR,item)

pathList=[]

ifos.path.exists(txtPath):

pathList=analyseReport(txtPath)

forPathinpathList:

docPath=os.path.join(CasePath,Path)

deleteFile(docPath)

print'DeleteOver'

os.system("pause")

以上内容为大家介绍了Python脚本解决一些繁琐的测试问题,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:瀚银百科。http:////

发表评论: