C#命令删除:空间文件名

时间:2015-07-13 10:30:41

标签: cmd delete-file

" ents.dll"删除但是" fast race.exe"没有删除。我觉得有空间。请帮帮我。

System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";


         startInfo.Arguments = "/C  del  ents.dll + fast race.exe";
         process.StartInfo = startInfo;
         process.Start();

0 个答案:

没有答案