3

Python 2.5 中有没有办法复制路径中包含特殊字符(日文字符、西里尔字母)的文件? shutil.copy不能处理这个。

这是一些示例代码:

import copy, os,shutil,sys
fname=os.getenv("USERPROFILE")+"\\Desktop\\testfile.txt"
print fname
print "type of fname: "+str(type(fname))
fname0 = unicode(fname,'mbcs')
print fname0
print "type of fname0: "+str(type(fname0))
fname1 = unicodedata.normalize('NFKD', fname0).encode('cp1251','replace')
print fname1
print "type of fname1: "+str(type(fname1))
fname2 = unicode(fname,'mbcs').encode(sys.stdout.encoding)
print fname2
print "type of fname2: "+str(type(fname2))

shutil.copy(fname2,'C:\\')

俄罗斯 Windows XP 上的输出

C:\Documents and Settings\└фьшэшёЄЁрЄюЁ\Desktop\testfile.txt
type of fname: <type 'str'>
C:\Documents and Settings\Администратор\Desktop\testfile.txt
type of fname0: <type 'unicode'>
C:\Documents and Settings\└фьшэшёЄЁрЄюЁ\Desktop\testfile.txt
type of fname1: <type 'str'>
C:\Documents and Settings\Администратор\Desktop\testfile.txt
type of fname2: <type 'str'>
Traceback (most recent call last):
  File "C:\Test\getuserdir.py", line 23, in <module>
    shutil.copy(fname2,'C:\\')
  File "C:\Python25\lib\shutil.py", line 80, in copy
    copyfile(src, dst)
  File "C:\Python25\lib\shutil.py", line 46, in copyfile
    fsrc = open(src, 'rb')
IOError: [Errno 2] No such file or directory: 'C:\\Documents and Settings\\\x80\
xa4\xac\xa8\xad\xa8\xe1\xe2\xe0\xa0\xe2\xae\xe0\\Desktop\\testfile.txt'
4

3 回答 3

2

尝试将 unicode 参数传递给shutil.copy(). 那是,shutil.copy( fname0, u'c:\\')

http://docs.python.org/howto/unicode.html#unicode-filenames

http://www.amk.ca/python/howto/unicode#unicode-filenames

http://www.python.org/dev/peps/pep-0277/

于 2010-05-27T08:15:39.780 回答
0

解决了问题

Windows XP 中的桌面路径不是“C:\Documents and Settings\Администратор\Desktop”。它是“C:\Documents and Settings\Администратор\Рабочий стол”。现在两者之间存在映射。

从 Windows Vista 开始,您可以使用 C:\users\Администратор\Desktop 调用此路径,但它在资源管理器中称为“C:\Пользователь\Администратор\Рабочий стол”。

于 2010-05-27T12:31:03.387 回答
0

作为一种解决方法,您可以os.chdir使用以 unicode 命名的目录,这样shutil就不必具有 Unicode 参数:(如果文件名中包含非 ASCII,显然这对您没有帮助。)

os.chdir(os.getenv("USERPROFILE")+"\\Desktop\\")
shutil.copy("testfile.txt",'C:\\')

或者,您可以用老式的方式复制文件。

in_file = open(os.getenv("USERPROFILE")+"\\Desktop\\testfile.txt", "rb")
out_file = open("C:\testfile.txt", "wb")
out_file.write(in_file.read())
in_file.close()
out_file.close()

我能想到的第三种解决方法是改用 Python 3 :)

于 2010-05-27T08:48:15.737 回答