动态计划任务
我需要安排一个控制台应用程序每天在一天中的某个时间运行。我使用过Windows的“计划任务”功能。
例如,有没有一种方法可以通过 C# 以编程方式动态更改当天的时间?
I need to schedule a console application to run daily at a certain time of the day. I have used "Scheduled Tasks" feature of Windows.
Is there a way to dynamically change the time-of-the-day programmatically by C# for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个可用的 API,但据我所知不适用于托管代码。
http://msdn.microsoft.com/en-us /library/aa384006(VS.85).aspx
或者,您可以让您的程序使用命令行界面 (schtasks)。
There is an API available but as far as I know not for managed code.
http://msdn.microsoft.com/en-us/library/aa384006(VS.85).aspx
Alternatively you could let your program use the command line interface (schtasks).