日期:2014-05-17 浏览次数:20715 次
foreach (FileInfo NextFile in fileInfo)
{
runOne();
}
private void runOne()
{
string binStr = "a.exe";
string argu = " -0"
Process exep = new Process();
exep.StartInfo.FileName = binStr;
exep.StartInfo.Arguments = argu;
exep.StartInfo.CreateNoWindow = true;
exep.StartInfo.UseShellExecute = false;
exep.Start();
}