System.Diagnostics.Process p = new Process();
 p.StartInfo.UseShellExecute = true;
 p.StartInfo.FileName = @"D:\text.txt";
 p.Start();

 

相关文章: