Wince6.0指定打开文件夹(C#)

 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         }
posted @ 2012-09-07 09:54  Faint@LastStep  阅读(195)  评论(0编辑  收藏  举报