You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zipfiles library does not work against a filename with Unicode(multibyte character).
(ex : 【αβγ★】.zip)
Temporary solution
I tried sending WideCString in nim and recieving wchar_t pointer in C at calling 'zip_open' in libzip_all.c library.
(have to fix zipfiles.nim, libzip.nim, and libzip_all.c)
It seems looks working fine.
But, this solution is maybe only valid in 'zipfiles.open' on Windows platform.
Permanent solution
How to comply with Unicode as a whole ?
Please give me a hand...
The text was updated successfully, but these errors were encountered:
Problem
zipfiles library does not work against a filename with Unicode(multibyte character).
(ex : 【αβγ★】.zip)
Temporary solution
I tried sending WideCString in nim and recieving wchar_t pointer in C at calling 'zip_open' in libzip_all.c library.
(have to fix zipfiles.nim, libzip.nim, and libzip_all.c)
It seems looks working fine.
But, this solution is maybe only valid in 'zipfiles.open' on Windows platform.
Permanent solution
How to comply with Unicode as a whole ?
Please give me a hand...
The text was updated successfully, but these errors were encountered: