revZipEnumerateItems mistake with diacritical chars
Posted: Wed Jan 09, 2013 7:02 pm
It seem revZipEnumerateItems don't like diacritical chars and it seem necessary to use urlEncode(MyfileName) to keep the diacritical chars.
I testes it with two small zip (LC 5.02)
• Zip 2
Best regards
Jean-Marc
I testes it with two small zip (LC 5.02)
• Zip 2
• Zip 2Name of files in the zip (not urlEncoded):
"août.png"
"affûter.png"
revZipEnumerateItems return:
Problucirc/affuÃÇter.png
__MACOSX/Problucirc/._affuÃÇter.png
Problucirc/AouÃÇt.png
__MACOSX/Problucirc/._AouÃÇt.png
Name of files on the disk:
"affuÃÇter.png"
"AouÃÇt.png"
Is it a bug for you or not ?Name of files in the zip (urlEncoded):
"aff%9Eter.png"
"_ao%9Et.png"
revZipEnumerateItems return:
ucircencoded/aff%9Eter.png
__MACOSX/ucircencoded/._aff%9Eter.png
ucircencoded/ao%9Et.png
__MACOSX/ucircencoded/._ao%9Et.png
Name of files on the disk:
"aff%9Eter.png"
"ao%9Et.png"
Best regards
Jean-Marc