This code will open Explorer and select the file or folder given.
static void openInExplorer(string path)
{
string cmd = "explorer.exe";
string arg = "/select " + path;
Process.Start(cmd, arg);
}
This code will open Explorer and select the file or folder given.
static void openInExplorer(string path)
{
string cmd = "explorer.exe";
string arg = "/select " + path;
Process.Start(cmd, arg);
}