andrewiankidd/rcloneExplorer

Doesn't work with folder / file name in other languages

Closed this issue · 2 comments

jimbb commented

Hi there,

Trying to play around with this a little bit and it seems that the rcloneExplorer cannot handle folder/file name in Chinese / Japanese at the moment.

  1. It is not shown correctly on the interface
  2. It skips the folder / files

Thanks!

This is an Unicode Issue.

Add this lines:
process.StartInfo.StandardOutputEncoding = Encoding.UTF8;
process.StartInfo.StandardErrorEncoding = Encoding.UTF8;

At the Execute(...) methode of the rcloneExplorer.Core.InternalExec class