码迷,mamicode.com
首页 > 编程语言 > 详细

python文件操作的坑( FileNotFoundError: [Errno 2] No such file or directory...)

时间:2017-06-24 17:25:28      阅读:1062      评论:0      收藏:0      [点我收藏+]

标签:dir   name   blog   unity   解决   error:   一个   问题   方法   

环境: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...)

标签:dir   name   blog   unity   解决   error:   一个   问题   方法   

原文地址:http://www.cnblogs.com/fanyuchen/p/7073629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!