python中非英语文件名的文件操作
作者:互联网
我们许多人可能都面临这个问题,但是我对unicode的处理能力很差.这是问题所在:
这是一个代码段,我试图执行.exe文件,并检查文件路径是否存在,但没有运气:
#Python 2.6.7
filePath = 'C:\\Test\\' # Test folder haveing file BitComet_比特彗星_1_25.exe
for (adir, dirs, files) in os.walk(rootdir):
for f in files:
path = os.path.join(adir,f)
if os.path.exists(path ):
print'Path Found',path
#Extract file
#logging(path )
else:
print 'Path Not Found'
#logging(path )
我总是得到结果“找不到路径”.我尝试使用path.decode(‘utf-8’):
但是脚本将文件路径读取为:
C:\Test\BitComet_????_1_25.exe
由于此文件路径不存在,因此转到else分支.
请给我一个提示来处理此unicode问题,以及如果我能够告诉用户在cmd或日志文件中显示文件路径,它是否更好.
如果这似乎是重复的帖子,我深表歉意.
解决方法:
Windows路径以UTF-16编码. Python可以为您处理此问题,只需将unicode路径传递给os.walk(),您将获得Unicode结果:
filePath = u'C:\\Test\\' # Test folder haveing file BitComet_比特彗星_1_25.exe
for (adir, dirs, files) in os.walk(filePath):
标签:python-unicode,unicode,windows,python 来源: https://codeday.me/bug/20191031/1972675.html