#!/usr/bin/env python
#-*- coding:utf-8 -*-
import sys, os
import md5
destPath = r'h:\路径A\测试'
srcPath = r'h:\路径B\测试'
rstPath = r'h:\路径C\rst.txt'
#----------------------------------------------------------------------
def find_all_files(path):
'''
'''
print '\r\r'
files = os.listdir(path.decode('utf8'))
fileslist = []
for ff in files:
ffPath = path + '\\' + ff
print ffPath,
if os.path.isfile(ffPath):
fileslist.append(ffPath)
print 'file'
elif os.path.isdir(ffPath):
print 'dir'
fileslist += find_all_files(ffPath)
else:
print 'parse error!', '\t', ffPath
return fileslist
#--------------------------------------------------
python处理中文字符的一点经验
最新推荐文章于 2024-09-11 11:02:08 发布
本文分享了在Python中处理中文字符的一些经验和方法,包括读写中文文件、字符串编码转换等常见问题的解决策略。
摘要由CSDN通过智能技术生成