美文网首页
自动化之查到最新生成的测试报告文件

自动化之查到最新生成的测试报告文件

作者: test小星星 | 来源:发表于2018-09-26 14:46 被阅读7次
    # 查找测试报告目录,找到最新生成的测试报告文件
    def new_report(testreport):
        # 列举参数:testreport目录下的所有文件(名),结果以列表形式返回。
        lists = os.listdir(testreport)
        # 对lists元素,按文件修改时间从小到大排序。
        lists.sort(key=lambda fn: os.path.getatime(testreport + "\\" + fn))
        # 获取最新文件的绝对路径,列表中最后一个值,文件夹+文件名
        file_new = os.path.join(testreport, lists[-1])
        print(file_new)
        return file_new
    

    相关文章

      网友评论

          本文标题:自动化之查到最新生成的测试报告文件

          本文链接:https://www.haomeiwen.com/subject/xundoftx.html