As the name says, I have a problem with characters outside of ASCII (for example, "รก", "รฃ", etc.) in I / O operations. See an example (Unix environment):
import System.Cmd system "ls aaaรก"
Returning the ls command code error:
(...)ls: can't access "aaa " : no such file or directory(...)
How can i fix this?
source share