Python OSError: [Errno 22] Invalid argument:的出现和解决

Posted yanhuidj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python OSError: [Errno 22] Invalid argument:的出现和解决相关的知识,希望对你有一定的参考价值。

 
技术图片
【转自https://www.cnblogs.com/Owen-ET/】
1 if __name__ == ‘__main__‘:
2 startime = time.strftime(‘%H:%M:%S‘) 3 print("开始时间为:%s" % startime) 4 #测试路径 5 test_dir = ‘./t/test_case‘ 6 #报告路径 7 report_dir = ‘./t/report/‘ 8 9 now = time.strftime(‘%Y-%m-%d_%H:%M:%S‘) 10 # 创建完整报告文件 11 filename = report_dir + now + ‘_report.html‘ 12 fp = open(filename,‘wb‘)
技术图片

 

 

 

 看到没有!!看第九行,now的获取时间有问题!!!时分秒之间不能用冒号:,不能用冒号:,不能用冒号:,重要的事情说三遍!!!

修改如下:

技术图片
 1 if __name__ == ‘__main__‘:
 2     startime = time.strftime(‘%H:%M:%S‘)
 3     print("开始时间为:%s" % startime)
 4     #测试路径
 5     test_dir = ‘./t/test_case‘
 6     #报告路径
 7     report_dir = ‘./t/report/‘
 8 
 9     now = time.strftime(‘%Y-%m-%d_%H_%M_%S‘)
10     # 创建完整报告文件
11     filename = report_dir + now + ‘_report.html‘
12     fp = open(filename,‘wb‘)
技术图片

以上是关于Python OSError: [Errno 22] Invalid argument:的出现和解决的主要内容,如果未能解决你的问题,请参考以下文章

在使用python语言的open函数时,提示错误OSError: [Errno 22] Invalid argument: ‘文件路径’

Python OSError: [Errno 22] Invalid argument:的出现和解决

python OSError: [Errno 22] Invalid argument: 'D:crawlex01.html1'

为啥 Datetime 的`.timestamp()` 方法返回`OSError: [Errno 22] Invalid argument`?

Tensorboard: OSError: [Errno 22] Invalid argument

tensorboard OSError:[Errno 22] Invalid argument