用一下代码删除d:\gundong.aspx.cs文件可以,但无法删除压缩文件?请教各位如何解决
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = false;
try
{
p.Start();
p.StandardInput.WriteLine(@"del d:\gundong.aspx.rar");//删除压缩文件
p.StandardInput.WriteLine("exit"); 
p.Close();
p.Dispose();
}
catch(Exception ex)
{
Response.Write(ex.ToString());
}