Python 官方文档:入门教程 => 点击学习
python中的中文路径解决: 注:1、sys.setdefaultencoding('utf-8')将Python默认encode改为utf-82、p.write(s.encode('utf-8')+"\n")写入时再encode('ut
python中的中文路径解决:
注:
1、sys.setdefaultencoding('utf-8')将Python默认encode改为utf-8
2、p.write(s.encode('utf-8')+"\n")写入时再encode('utf-8')
#!/usr/bin/python
#coding=utf-8
import os
import shutil
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
dir="/root/python"
for root,dirs,files in os.walk(dir):
for f in files:
if f == "bb.txt":
s = os.path.dirname(os.path.join(root,f))
p = open('/root/python/logs/py.log','a')
p.write(s+"\n")
p.close()
c = open('/root/python/logs/py.log','r')
for i in c.readlines():
shutil.rmtree(i.strip())
:wq
--结束END--
本文标题: python中的中文路径解决
本文链接: https://lsjlt.com/news/188819.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0