码迷,mamicode.com
首页 > Windows程序 > 详细

c#根据文件路径启动进程

时间:2019-01-17 13:58:28      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:director   code   red   dia   cts   lse   span   string   stat   

       //根据文件路径启动进程
        private static void StartProcessByFilePath(string path)
        {
            Process p = new System.Diagnostics.Process();
            p.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(path);
            p.StartInfo.FileName = System.IO.Path.GetFileName(path);
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = false;
            p.StartInfo.RedirectStandardOutput = false;
            p.StartInfo.RedirectStandardError = false;
            p.StartInfo.CreateNoWindow = true;
            Process.Start(path);
        }

 

c#根据文件路径启动进程

标签:director   code   red   dia   cts   lse   span   string   stat   

原文地址:https://www.cnblogs.com/zhaogaojian/p/10281604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!