当前位置: 代码迷 >> ASP.NET >> asp.net web删除文件 dos 命令总是失败解决方法
  详细解决方案

asp.net web删除文件 dos 命令总是失败解决方法

热度:3602   发布时间:2013-02-25 00:00:00.0
asp.net web删除文件 dos 命令总是失败
asp.net web删除 dos 命令总是失败  
public bool cmd(string argm) {  
  //开始创建文件 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 = true;  
 try { p.Start();  
 p.StandardInput.WriteLine(argm);  
 p.StandardInput.WriteLine("exit");  
  p.StandardOutput.ReadToEnd();  
 p.Close();  
  return true; }  
  catch { return false; } }  
  其中argm是表示执行的cmd命令,比如我要创建一个文件夹,使用方法如下: bool created = cmd(@"md e:\abc\mydir")--------------成功 。执行 一般dos成功


但是 del e:\abc\a.txt 总是失败??? (为什么 难道 del需要 带 参数 强制)

------解决方案--------------------------------------------------------
没有权限。web程序是匿名帐户运行,默认是不允许的,你需要提升权限。如采用模拟或者在应用程序池中将标识改成本地系统
另外,删除操作.net本身有啊
File.Delete方法
  相关解决方案