How to run the delete command via Process?

265 Views Asked by At

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();
2

There are 2 best solutions below

2
On BEST ANSWER

You're doing it the wrong way. You should be using the File.Delete method instead.

Sample code:

string sourceDir = @"C:\Backups";   // change this to the location of the files
string[] bakList = Directory.GetFiles(sourceDir, "*.bak");

try
{
    foreach (string f in bakList)
    {
        File.Delete(f);
    }
}
catch (IOException ioex)
{
    // failed to delete because the file is in use
}
catch (UnauthorizedAccessException uaex)
{
    // failed to delete because file is read-only,
    // or user doesn't have permission
}
0
On

If there a reason you're choosing to execute Process over Directory.GetFiles coupled with File.Delete?