我有一段代码可以运行命令行并执行以下操作:
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。