天天看点

c#打开资源管理器

private void toolStripStatusLabel1_Click(object sender, EventArgs e)
        {
            System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe");
            psi.Arguments = "/e,/select," + path[i];
            System.Diagnostics.Process.Start(psi);      

继续阅读