checksumdir
checksumdir copied to clipboard
any plan for supporting windows?
Hi @cakepietoast , I tried this library for testing my own hashsum script if it works correctly. But there were mismatches in various situations. I found it encodes hash values in UTF-8 which is not a default option in Windows. I wonder you already knew this issue.
Thanks.
Hi! Just want to notice that print
just uses environment's encoding. It seems like your environment has wrong setup. You can check your terminal/console emulator encoding with:
py -c "import sys;print(sys.stdout.encoding)"
it's utf-8. I changed my terminal codepage to utf8 recently. It was cp949 (korean).
Well, since then it must be working, isn't it?