In a project, I batch process (resize) image and save them.
So far, so good.
But, there are accentuated characters in their file names and I want to remove them (the images files are used in a html document) in a DESKTOP application.
As an example, the code below returns Spe?cial when I have Spécial:
ConvertEncoding("Spécial", Encodings.ASCII)
What I want to get is Special.
A search in the Internet leads to nowhere… (excepted a waste of time).