How can I open Windows Explorer to a certain directory from within a WPF app?
Why not Process.Start(@"c:\test");
?
Process.Start("explorer.exe" , @"C:\Users");
I had to use this, the other way of just specifying the tgt dir would shut the explorer window when my application terminated.