0

我有一段代码可以运行命令行并执行以下操作:

        ProcessStartInfo psi = new ProcessStartInfo();
        psi.FileName = "CMD.EXE";
        System.Console.WriteLine("please insert the path of working directory");
        string path = System.Console.ReadLine();
        psi.WorkingDirectory = path; //@"D:\Exercises\npp52\scintilla\src";
        psi.Arguments = "/C dir /s /b | cccc - --outdir=d:\\jon";
        psi.WindowStyle = ProcessWindowStyle.Normal;
        Process.Start(psi);
        // ... cut ...
        XmlTextReader reader = new XmlTextReader(@"D:\jon\anonymous.xml");
        while (reader.Read()) 
        {
            switch (reader.NodeType) { /* ... */ }
        }

第二件不会等到第一件完成后再开始。特别是在第一块将产生 anonimous.xml 之前,第二块试图获取该 xml。

4

1 回答 1

3

如果添加此行:

Process.Start(psi);
psi.WaitForExit(); // <-- add this

您的代码应该等待该过程结束。

于 2012-12-13T08:50:05.620 回答