I want to write to a log every 3 hours using System.IO
There is no matter how the files called. Really, just how can I do that every 3 hours something happens?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a Timer, set its Interval to 3*60*60*1000 and, in Tick event, do what you need.
Remember to stop timer and remove the handler before form or app closing…