我正在尝试使用 python 2.4 做类似的事情:

#!/usr/bin/python
# -*- coding: utf-8 -*-

afile = unicode('C:\\國立國語院.py', 'UTF-8')
execfile(afile.encode("UTF-8",'replace'))

我收到此错误:
IOError: [Errno 2] No such file or directory: 'C:\\\xef\xbb\xbf\xe5\x9c\x8b\xe7\xab\x8b\xe5\x9c\x8b\xe8\xaa\x9e\xe9\x99\xa2.py'

所以我的问题是,如果我要执行的文件的名称带有韩文字符,我该如何执行 execfile?

非常感谢你

最佳答案

我认为您应该能够在 Windows 上使用 unicode 参数执行 execfile(afile) ,但我无法对其进行测试。

如果没有,获取文件系统编码:

import sys
fsenc = sys.getfilesystemencoding()
execfile(afile.encode(fsenc))

关于python - [Python]编码和execfile,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5855550/

10-12 00:38