折腾:
【未解决】Python更新文件最后修改时间
期间,报错:
发生异常: TypeError not all arguments converted during string formatting File "/Users/xxx/dev/crifan/gitbook/gitbook_template/common/tools/generate_md_from_summary.py", line 52, in updateFileTime statInfo = os.stat(filePath) File "/Users/xxx/dev/crifan/gitbook/gitbook_template/common/tools/generate_md_from_summary.py", line 96, in <module> curTimestamp = curDateTime.timestamp() # 1620549669.399425
python os.stat not all arguments converted during string formatting
python os.stat not all arguments
此处就是普通的 str的文件路径,没有需要格式化还缺少参数的
python os.stat TypeError
到最后,结果发现:
是自己搞错了,报错代码是:
print("statInfo=%s" % statInfo)
而不是:
statInfo = os.stat(filePath)
错误原因是:
此处statInfo是个特殊的对象,不能用%s去格式化
所以,算了,不print了:
# print("statInfo=%s" % statInfo)
后续用:
statInfo.st_atime statInfo.st_mtime
即可。
【总结】
此处:
statInfo = os.stat(filePath) print("statInfo=%s" % statInfo)
中报错:
发生异常: TypeError not all arguments converted during string formatting
以为是:os.stat(filePath) 的错误。
实际上是:
print("statInfo=%s" % statInfo)
报错的。
原因:statInfo是一个特殊的Object对象
class os.stat_result
此处不能直接print,所以会报错。
解决办法:不要print 或者 打印对应子字段
print("statInfo.st_atime=%s" % statInfo.st_atime) print("statInfo.st_mtime=%s" % statInfo.st_mtime)
即可。
相关文档:
转载请注明:在路上 » 【已解决】Python中os.stat报错:TypeError not all arguments converted during string formatting