I would like to write a .NET application that runs in the background (stays down in the taskbar) and does a long operation like copying folders of files from one location to another. I want to write it in such a way that other applications that are running don’t slow down much. I don’t care how long the background app takes. Is there a way that I can limit the processing/memory resources for the application. I know when you create threads you can set their priorities to different levels. Would setting a thread priority to low have this effect or would it only have less priority than any other threads that are part of the same application?
Share
If you’re looking for something with the precision of NICE in unix, I’m not sure of any exists. But you can set the priority of the process which may help.
Hope that helps.