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

后端 未结 6 1545
天涯浪人
天涯浪人 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:40

    Write a console app or equivalent, and use the Windows Scheduler (or whatever it's called nowadays...) to run it daily.

提交回复
热议问题