摘要: 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"; //指定打开的文... 阅读全文
posted @ 2012-09-07 09:54 Faint@LastStep 阅读(195) 评论(0) 推荐(0) 编辑