I am running some code in a while loop to ensure a program is always running. If the program isn't running it starts it, if the program isn't there it copies it from a backup and then starts it, nothing fancy:
while (true)
{
Process backup = new Process();
ProcessStartInfo check = new ProcessStartInfo(file);
if (Process.GetProcessesByName(file).Length == 0)
{
if(File.Exists(file))
{
backup.StartInfo = check;
backup.Start();
}
else if (!File.Exists(file))
{
File.Copy(backupFile, file);
Thread.Sleep(250);
backup.StartInfo = check;
backup.Start();
}
}
backup.Close();
Thread.Sleep(2000);
}
The problem is after each cycle the ram usage goes up by about 100KB which isn't a lot I know but if this is running for an hour or so it's going to cause big problems.
I have tried pausing it and using .Close() on the process but no joy. Any ideas are much appreciated.
Processin ausingstatement. – Oded♦ Jan 28 '12 at 11:43