1 using System.Diagnostics; 2 3 private void button4_Click(object sender, EventArgs e) 4 { 5 Process process = new Process(); 6 process.StartInfo.FileName = @"Windows\explorer.exe"; 7 process.StartInfo.Arguments = @"\Storage Card\AnyTime-1000"; //指定打开的文件夹目录 8 try 9 { 10 process.Start(); 11 } 12 catch (System.Exception ex) 13 { 14 MessageBox.Show(ex.ToString()); 15 } 16 }