C#启动应用程序

 System.Diagnostics.Process p = new Process();
 p.StartInfo.UseShellExecute = true;
 p.StartInfo.FileName = @"D:	ext.txt";
 p.Start();
原文地址:https://www.cnblogs.com/lampon/p/3158511.html