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

python 中文路径问题

时间:2017-07-07 17:26:03      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:txt   sdn   class   tle   pytho   path   中文   get   base   

Python直接读取中文路径的文件时失败,可做如下处理:

 inpath = ‘D:/work/yuanxx/在线导航/驾车导航/walk_log/20130619_172355.txt‘
 uipath = unicode(ipath , "utf8")

然后用"uipath"经过编码后的路径去open()即可:

 fin = open(uipath)

python 中文路径问题

标签:txt   sdn   class   tle   pytho   path   中文   get   base   

原文地址:http://www.cnblogs.com/whm-blog/p/7133090.html

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