python文件操作的坑( FileNotFoundError: [Errno 2] No such file or directory...)
Posted fanyuchen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python文件操作的坑( FileNotFoundError: [Errno 2] No such file or directory...)相关的知识,希望对你有一定的参考价值。
环境:Windows8.1, Python3.6 pycharm community 2017
c盘下有一个配置文件:setup
1 with open(‘c:\\setup‘,‘r‘) as f: 2 f.read()
提示一直很诡异:FileNotFoundError: [Errno 2] No such file or directory: ‘c:\\setup‘
网上有大量关于Python编码错误导致无法打开文件的解决方法,utf8 gbk2312,尝试过一遍全部无效
最后原因很乌龙:setup后缀是*.log
换成
1 filename = ‘c:\\setup.log‘
所有问题解决
以上是关于python文件操作的坑( FileNotFoundError: [Errno 2] No such file or directory...)的主要内容,如果未能解决你的问题,请参考以下文章
springboot多环境日志配置,启动时logback-test.xml文件冲突导致启动失败:openFile(null,true) call failed. java.io.FileNotFoun