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();
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();
If there a reason you're choosing to execute Process over Directory.GetFiles
coupled with File.Delete
?
You're doing it the wrong way. You should be using the
File.Delete
method instead.Sample code: