README 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Klimbim Software collection, A bag full of things
  2. # Copyright (C) 2011-2023 Johannes 'Banana' Keßler
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  16. # utf8filenamecheck
  17. Small windows C tool to check if paths in a folder are utf-8 formatted
  18. # Uses
  19. - https://www.argtable.org : Argument parsing (argtable-3.1.5-amalgamation)
  20. - https://github.com/adamretter/utf8-validator-c : Check if a string is utf-8
  21. # WARNING
  22. This is a very simple, with limited experience written, windows C program.
  23. Use at own risk and feel free to improve.
  24. # How to build
  25. - gcc from https://jmeubank.github.io/tdm-gcc/ (build with tdm64-gcc-9.2.0)
  26. Run the makefile.bat in a cmd terminal.
  27. Resulting utf8filenamecheck.exe is in bin/ directory.
  28. # How to use
  29. Run in a terminal `utf8filenamecheck.exe c:\some\dir`
  30. Run utf8filenamecheck.exe --help to see its options.