添加参数进程无法正常工作?

时间:2012-08-17 18:46:26

标签: c# process arguments

我用C#WinForms编写了这个程序。

使用system.diagnostic创建CMD进程。 使用那个cmd我想要一些参数,但它们不存在或工作:S 不知道为什么?!

注意:我不知道如何使用超过1个参数,如果我错了,请纠正我:D 我试图复制“copy / b%filename%lpt1”命令....

这是我的代码:

    public void OutputBtn_Process_Click(object sender, EventArgs e)
    {
        foreach (FileInfo fi in listBox1.Items)
        {
            Process process1 = new Process();
            process1.StartInfo.UseShellExecute = false;
            process1.StartInfo.Arguments = "copy /b myfile.txt test.txt";
            //process1.StartInfo.LoadUserProfile = true;
            process1.StartInfo.FileName = "cmd.exe";
            process1.StartInfo.WorkingDirectory = Path.GetDirectoryName(fi.FullName);
            process1.Start();
        }
    }

2 个答案:

答案 0 :(得分:1)

string strCmdText;
strCmdText= "/C copy /b myfile.txt test.txt";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);

答案 1 :(得分:0)

试试这个

 process1.StartInfo.Arguments = "/C \"copy /b myfile.txt LPT1:\""; 

The documentation on Windows 7 command-line tool cmd.exe