How to execute code in c# service one time per day at the same hour?

后端 未结 6 1540
天涯浪人
天涯浪人 2020-12-09 12:53

So here\'s my problem, I need to do a c# service running on a server who\'s getting file on ftp one time per day at 3am. I think that I can do it with a thread.sleep() or by

6条回答
  •  既然无缘
    2020-12-09 13:32

    Why not set this up to run as a scheduled task. Have it execute and then exit. Set up Windows to start the process as a scheduled task at 3:00 AM daily.

提交回复
热议问题