C#怎么启动带参数的执行文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#怎么启动带参数的执行文件相关的知识,希望对你有一定的参考价值。

public bool StartProcess(string filename, string[] args)

try

string s="";
foreach(string arg in args)

s=s+arg+" ";

s=s.Trim();
Process myprocess = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo(filename,s);
myprocess.StartInfo = startInfo;

//通过以下参数可以控制exe的启动方式,具体参照 myprocess.StartInfo.下面的参数,如以无界面方式启动exe等
myprocess.StartInfo.UseShellExecute = false;
myprocess.Start();
return true;

catch (Exception ex)

MessageBox.Show("启动应用程序时出错!原因:" + ex.Message);

return false;


接着,在调用的地方调用此函数

private void button1_Click(object sender, EventArgs e)

string[] arg = new string[1];
arg[0] = textBox1.Text.Trim();
StartProcess(@"E:/ZHOUXL/C#/FileOP/FileOP/bin/Debug/FileOP.exe",arg);
参考技术A Process.start(程序名,参数);这个函数可以,System.Diagnostics命名空间里的,都是string类型的参数,希望可以帮到你。

以上是关于C#怎么启动带参数的执行文件的主要内容,如果未能解决你的问题,请参考以下文章

C# 启动EXE文件及带启动参数EXE

Jmeter执行过程中修改参数

用C#写一个windows服务可定时执行sql Service数据库里面的存储过程(带两个参数),急求代码!高手赐教!

怎样在java类中调用带参数的可执行文件(比如:.exe,.sh等等)?

带配置文件参数启动Flink任务

从 C# 执行批处理文件