In my program, I use QProcess::execute() to execute some cmds.
Such as
Qt Code:
  1. QString x = "copy a.txt b.txt"
  2. QProcess::execute(x);
To copy to clipboard, switch view to plain text mode 
It works OK.

But if the "x" has non-ascii.Such as
Qt Code:
  1. QString x = "copy c:\中文\a.txt c:\中文\b.txt";
  2. QProcess::execute(x).
To copy to clipboard, switch view to plain text mode 
It doesn't has any effect.
Could you give me some helps? Thans a lot!!!