p7zip
p7zip copied to clipboard
Codepage problem, possibly UTF8 issue.
Any non english characters appear scrambled, as if the codepage is just a regular ASCII or LATIN*, instead of UTF8.
Trying to extract files from paths with nonenglish characters in them, errors out with "file not found" error.
I have the latest snap version installed: 16.02.2
fix the source code in "CPP/Common/StringConvert.cpp" add #include <locale.h> add setlocale(LC_ALL,""); before "int numChars = mbstowcs(resultString.GetBuf(srcString.Len()),srcString,srcString.Len()+1);"
can solve this problem