473,385 Members | 2,044 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

shutil.copy Problem

Hi,

I wasn't exactly sure where to send this, I don't know if it is a bug
in Python or not. This is rare, but it has occurred a few times and
seems to be reproducible for those who experience it.

Examine this code:
>>try:
shutil.copy("/file.xml","/Volumes/External/file.xml")
except Exception, err:
print sys.exc_info()[0]
print err
This is the output:
exceptions.UnicodeDecodeError
'ascii' codec can't decode byte 0xd6 in position 26: ordinal not in
range(128)]

What could the possible cause of this be? Shouldn't shutil simply be
reading and writing the bytes and not character decoding them?

Cheers,
David
Mar 27 '07 #1
8 7582
On Mar 27, 11:10 am, David Nicolson <davidnicols...@hotmail.com>
wrote:
Hi,

I wasn't exactly sure where to send this, I don't know if it is a bug
in Python or not. This is rare, but it has occurred a few times and
seems to be reproducible for those who experience it.

Examine this code:
>>try:
>> shutil.copy("/file.xml","/Volumes/External/file.xml")
>>except Exception, err:
>> print sys.exc_info()[0]
>> print err

This is the output:
exceptions.UnicodeDecodeError
'ascii' codec can't decode byte 0xd6 in position 26: ordinal not in
range(128)]

What could the possible cause of this be? Shouldn't shutil simply be
reading and writing the bytes and not character decoding them?

Cheers,
David
what if you try it without the try...except?
perhaps the UnicodeDecodeError is in the print...

Mar 27 '07 #2
Thanks, but it's definitely not the print. In original the code the
print statements are replaced by a call to a log method.

Besides, the exception would be different if it was thrown outside of
the try block.
On 27/03/2007, at 2:42 PM, Justin Ezequiel wrote:
On Mar 27, 11:10 am, David Nicolson <davidnicols...@hotmail.com>
wrote:
>Hi,

I wasn't exactly sure where to send this, I don't know if it is a bug
in Python or not. This is rare, but it has occurred a few times and
seems to be reproducible for those who experience it.

Examine this code:
>>>>try:
shutil.copy("/file.xml","/Volumes/External/file.xml")
except Exception, err:
print sys.exc_info()[0]
print err

This is the output:
exceptions.UnicodeDecodeError
'ascii' codec can't decode byte 0xd6 in position 26: ordinal not in
range(128)]

What could the possible cause of this be? Shouldn't shutil simply be
reading and writing the bytes and not character decoding them?

Cheers,
David

what if you try it without the try...except?
perhaps the UnicodeDecodeError is in the print...

--
http://mail.python.org/mailman/listinfo/python-list


Mar 27 '07 #3
On Mar 26, 8:10 pm, David Nicolson <davidnicols...@hotmail.comwrote:
Hi,

I wasn't exactly sure where to send this, I don't know if it is a bug
in Python or not. This is rare, but it has occurred a few times and
seems to be reproducible for those who experience it.

Examine this code:
>>try:
>> shutil.copy("/file.xml","/Volumes/External/file.xml")
>>except Exception, err:
>> print sys.exc_info()[0]
>> print err

This is the output:
exceptions.UnicodeDecodeError
'ascii' codec can't decode byte 0xd6 in position 26: ordinal not in
range(128)]

What could the possible cause of this be?
Show us traceback, without it I doubt anyone can help.
Shouldn't shutil simply be
reading and writing the bytes and not character decoding them?
Yes, shutil.copy copies content verbatim.

-- Leo

Mar 27 '07 #4
In <ma***************************************@python. org>, David Nicolson
wrote:
Hi,

I wasn't exactly sure where to send this, I don't know if it is a bug
in Python or not. This is rare, but it has occurred a few times and
seems to be reproducible for those who experience it.

Examine this code:
>>try:
>> shutil.copy("/file.xml","/Volumes/External/file.xml")
>>except Exception, err:
>> print sys.exc_info()[0]
>> print err

This is the output:
exceptions.UnicodeDecodeError
'ascii' codec can't decode byte 0xd6 in position 26: ordinal not in
range(128)]

What could the possible cause of this be? Shouldn't shutil simply be
reading and writing the bytes and not character decoding them?
Do you really get this error from the code above or just in the real
program? Are the paths hard coded in the real program too?

Ciao,
Marc 'BlackJack' Rintsch
Mar 27 '07 #5
David Nicolson wrote:
Thanks, but it's definitely not the print. In original the code the
print statements are replaced by a call to a log method.

Besides, the exception would be different if it was thrown outside of
the try block.
The best you can do is take the piece of code that has the problem, show
it to us, and then copy the traceback.

Regards,

--
.. Facundo
..
Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
Mar 27 '07 #6
Facundo Batista wrote:
David Nicolson wrote:

>>Thanks, but it's definitely not the print. In original the code the
print statements are replaced by a call to a log method.

Besides, the exception would be different if it was thrown outside of
the try block.


The best you can do is take the piece of code that has the problem, show
it to us, and then copy the traceback.

Regards,
There may be some problem here with a file being recognized as Unicode
in binary mode. That shouldn't happen, but looking at the Windows
UNICODE support, it might not be impossible.

Information needed:

- Platform (Windows, Linux, ...)
- Python version
- A hex dump of the first few bytes of the input file.

John Nagle
Mar 27 '07 #7
Hi John,

That was an excellent idea and it was the cause problem. Whether this
is a bug in shutil I'm not sure.

Here is the traceback, Python 2.4.3 on Windows XP:
C:\Documents and Settings\Güstav>C:\python243\python Z:\sh.py
Copying u'C:\\Documents and Settings\\G\xfcstav\\My Documents\\My
Music\\iTunes
\\iTunes Music Library.xml' ...
Traceback (most recent call last):
File "Z:\sh.py", line 12, in ?
shutil.copy(xmlfile,"C:iTunes Music Library.xml")
File "C:\python243\lib\shutil.py", line 81, in copy
copyfile(src, dst)
File "C:\python243\lib\shutil.py", line 41, in copyfile
if _samefile(src, dst):
File "C:\python243\lib\shutil.py", line 36, in _samefile
return (os.path.normcase(os.path.abspath(src)) ==
UnicodeDecodeError: 'ascii' codec can't decode byte 0xfc in
position 27: ordinal
not in range(128)
Here is the code:
import _winreg
import os
import shutil

reg = _winreg.ConnectRegistry(None, _winreg.HKEY_CURRENT_USER)
key = _winreg.OpenKey(reg, r"Software\Microsoft\Windows
\CurrentVersion\Explorer\Shell Folders", 0, _winreg.KEY_READ)
mymusic = _winreg.QueryValueEx(key, "My Music")[0]

xmlfile = os.path.join(os.path.join(mymusic,"iTunes"),"iTune s Music
Library.xml")
print "Copying ",repr(xmlfile),"..."

shutil.copy(xmlfile,"C:\iTunes Music Library.xml")
The shutil line needed to be changed to this to be successful:
shutil.copy(xmlfile.encode("windows-1252"),"C:\iTunes Music
Library.xml"

Regards,
David
On 27/03/2007, at 4:47 PM, John Nagle wrote:
Facundo Batista wrote:
>David Nicolson wrote:

>>Thanks, but it's definitely not the print. In original the code the
print statements are replaced by a call to a log method.

Besides, the exception would be different if it was thrown
outside of
the try block.


The best you can do is take the piece of code that has the
problem, show
it to us, and then copy the traceback.

Regards,

There may be some problem here with a file being recognized as
Unicode
in binary mode. That shouldn't happen, but looking at the Windows
UNICODE support, it might not be impossible.

Information needed:

- Platform (Windows, Linux, ...)
- Python version
- A hex dump of the first few bytes of the input file.

John Nagle
--
http://mail.python.org/mailman/listinfo/python-list


Mar 28 '07 #8
On Mar 28, 7:01 am, David Nicolson <davidnicols...@hotmail.comwrote:
Hi John,

That was an excellent idea and it was the cause problem. Whether this
is a bug inshutilI'm not sure.

Here is the traceback, Python 2.4.3 on Windows XP:


C:\Documents and Settings\Güstav>C:\python243\python Z:\sh.py
Copying u'C:\\Documents and Settings\\G\xfcstav\\My Documents\\My
Music\\iTunes
\\iTunes Music Library.xml' ...
Traceback (most recent call last):
File "Z:\sh.py", line 12, in ?
shutil.copy(xmlfile,"C:iTunes Music Library.xml")
Note, there is no backslash after C:. shutil will try to make an
absolute file name and concatenate it with a current directory name (C:
\Documents and Settings\Güstav) that contains non-ascii characters.
Because of backward compatibility the absolute name won't be unicode.
On the other hand data coming from registry is unicode. When shutil
tries to compare those two file names it fails. To avoid the problem
you need either make both file names unicode or both file names byte-
strings.

However one thing is still mystery to me. Your source code contains
backslash but your traceback doesn't:
shutil.copy(xmlfile,"C:\iTunes Music Library.xml")

Theshutilline needed to be changed to this to be successful:
shutil.copy(xmlfile.encode("windows-1252"),"C:\iTunes Music
Library.xml"
It will work only in some European locales. Using of locale module you
can make it work for 99% of world users, but it will still fail in
cases like German locale and Greek characters in file names. Only
using unicode everywhere in your program is a complete solution. Like

shutil.copy(xmlfile, u"C:\iTunes Music Library.xml")

if you use constant or make sure your file name is unicode:

dest = unicode(....)
shutil.copy(xmlfile, dest)
-- Leo.

Apr 1 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: bmgz | last post by:
I am have made a simple script that moves all desktop clutter (ie files that are not *.lnk) to a specified folder eg. c:\myhome\mydocs\desktopdebris\2003-12-16 ...
2
by: BartlebyScrivener | last post by:
I'm working on various backup scripts, using filecmp and shutil. When I run a script to copy files to a mapped network drive, shutil creates a backup file with a date of 2002 or so. If I use...
1
by: Russell Warren | last post by:
I just did a comparison of the copying speed of shutil.copy against the speed of a direct windows copy using os.system. I copied a file that was 1083 KB. I'm very interested to see that the...
6
by: Antoine De Groote | last post by:
Google tells quite some things about it, but none of them are satisfactory. I'm on Windows, and shutil operations (e.g. move, copy) throw Permission denied all the time, for the source files. It...
1
by: Hugo Ferreira | last post by:
Hi there, I have a problem. I'm using calling shutil.copyfile() followed by open(). The thing is that most of the times open() is called before the actual file is copied. I don't have this...
10
by: Robert Dailey | last post by:
Hi, I'm trying to create a Python equivalent of the C++ "ifstream" class, with slight behavior changes. Basically, I want to have a "filestream" object that will allow you to overload the...
10
by: yinglcs | last post by:
Hi, Is there a c library which does shutil.copy2() in python? Basically copy a file from 1 directory to another? import shutil import os shutil.copy2(r"C:\test\test",r"C:\test1\test")
1
by: Ahmed, Shakir | last post by:
Need help to copy a personal geodatabase from one location to another: Trying to copy a personal geodatabase from one location to another location where all the users are retrieving data from...
4
by: klia | last post by:
hello folks i am trying to tweak the current codes so that later when i call it from the terminal i can provide sourcefile and the destination file rather being fixed in the code. because now i...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.