open the folder

private void OpenFolder(string path)
{
    string windir = Environment.GetEnvironmentVariable("WINDIR");
    System.Diagnostics.Process process = new System.Diagnostics.Process();
    process.StartInfo.FileName = windir + @"\explorer.exe";
    process.StartInfo.Arguments = path;
    process.Start();
}
原文地址:https://www.cnblogs.com/hongjiumu/p/3033580.html