Hi
I need to open folder through windows explorer using C#. It is working fine untill there is comma in folder path. Here is an example:
System.Diagnostics.Process.Start("explorer.exe", "C:\\folder\\another-folder\\123,456");
The error is: The path '456' does not exist or it is not a directory.
Any solution please :)