L
Lloyd Dupont
In my app I have a download folder and I try to open it with this code:
ProcessStartInfo psi = new ProcessStartInfo(OutputDir);
psi.UseShellExecute = true;
Process.Start(psi);
However it takes about 5 seconds to execute!!
Any idea why?
ProcessStartInfo psi = new ProcessStartInfo(OutputDir);
psi.UseShellExecute = true;
Process.Start(psi);
However it takes about 5 seconds to execute!!
Any idea why?