如何通过Process运行删除命令?
这不起作用,它找不到del.exe...
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "del.exe";
p.StartInfo.Arguments = "*.bak";
p.Start();
p.Close();
This does not work, it cant find del.exe...
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "del.exe";
p.StartInfo.Arguments = "*.bak";
p.Start();
p.Close();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你这样做的方式是错误的。您应该使用
File.Delete方法
代替。
示例代码:
You're doing it the wrong way. You should be using the
File.Delete
method instead.Sample code:
如果您出于某种原因选择通过
Directory.GetFiles< 执行 Process /code>
加上
File .删除
?If there a reason you're choosing to execute Process over
Directory.GetFiles
coupled withFile.Delete
?