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();
}

 

相关文章: