天天看點

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

繼續閱讀