I would like to run a timer for every 5 hours and delete the files from the folder older than 4 days. Could you please with sample code?
Thank you..
|
|
Since it hasn't been mentioned, I would recommend using a System.Threading.Timer for something like this. Here's an example implementation:
This way, you can run your file deletion code in a windows service with minimal hassle. |
|||||||
|
You can substitute LastWriteTime property for something else, thats just what I use when clearing out an Image Cache in an app I have. EDIT: Though this doesnt include the timer part... I'll let you figure that part out yourself. A little Googling should show you several ways to do it on a schedule. |
|||
|