监控超过 1 小时的文件
我需要能够确定文件是否超过一小时,如果是,则通过电子邮件、文本或页面通知我们的流程已开始。我需要任何以 .eob 结尾的文件
I need to be able to determine if a file is older than one hour and if so, email, text, or page to notify that our process has started. I need any file that ends with .eob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DateTime date = File.GetCreationTime(str_Path);
str_path 是 .eob 文件的路径。
然后将日期变量与 DateTime.Now() 进行比较
,如果它超过 1 小时,请发送您的电子邮件或您下一步想要执行的任何
操作编辑
要完成此操作,您将必须制作一个小型 c#/vb .Net 应用程序,该应用程序在编译时将,制作一个.exe。然后你可以在 Windows 中安排一个作业来执行你的小应用程序。
You can use DateTime date = File.GetCreationTime(str_Path);
str_path is the path of the .eob file.
Then compare date variable with DateTime.Now()
and if its greater than 1 hour send your email or whatever you want to do next
EDIT
To accomplish this you will have to make a small c#/vb .Net application that will, when compiled, make a .exe. Then you can schedukle a job in windows to execute your small app.