备注
[20220522]一个熟悉的函数,使用起来,第一次报了一个诡异的错误OSError: [Errno 22] Invalid argument,记录一下。
代码及报错
file_path=".\new.txt"
file_lines=["111\r\n","222\n","333\n"]
with open(file_path,'w',encoding="utf-8") as f:
f.writelines(file_lines)
python版本备注
报错情况
1.错误(文件路径为".\new.txt"):
2.错误(文件路径为".\aaa.txt"):
正常情况
例如:文件路径为".\111.txt"
报错原因(不明)
参考链接
Python文件操作错误:OSError: [Errno 22] Invalid argument(关于Windows下文件名中的敏感字符)