Processing changed file CD for M&D/Updates/iTunes 4.7/Read Before You
Install iTunes.app/Contents/Resources/ko.lproj/iTunes ???
?????? ????? ?????????.rtf
...
OSError: [Errno 63] File name too long: '/Volumes/Ext_BU/Users/kwh/
rdiffbu_v1_1_0/CD for M&D/Updates/iTunes 4.7/Read Before You Install
iTunes.app/Contents/Resources/ko.lproj/iTunes ;
225;132;137;225;133;165;225;134;175;225;132;142;225;133;181;225;132;1
46;
225;133;161;225;132;128;225;133;181 ;
225;132;140;225;133;165;225;134;171;225;132;139;225;133;166 ;
225;132;139;225;133;181;225;134;176;225;132;139;225;133;165;225;132;1
35;
225;133;169;225;132;128;225;133;181.rtf'
What is this M&D/Updates/.../iTunes_____________.rtf file? Are there
really a lot of weird characters in it? After a little manual
translating they look possibly Japanese to me :)
Try this patch to fs_abilities.py:
diff -u -r1.22 fs_abilities.py
--- fs_abilities.py 26 Oct 2005 17:42:17 -0000 1.22
+++ fs_abilities.py 27 Oct 2005 07:30:52 -0000
@@ -199,7 +199,8 @@
assert ord_rp.lstat()
ord_rp.delete()
- extended_filename = ':\\' + chr(175)
+ # Try a UTF-8 encoded character
+ extended_filename = ':\\ ' + chr(225) + chr(132) +
chr(137)
try:
ext_rp = subdir.append(extended_filename)
ext_rp.touch()