I have built a Windows Service which on start builds a list of file paths from a specified directory. I then do some processing on those files and delete them. My question is how often will the service build this list? Can we specify a time interval when this service would look into the directory and build the list?
OR
Is it better that I create a console application and assign it to a scheduler?