监控超过 1 小时的文件

发布于 2024-10-14 10:22:42 字数 69 浏览 3 评论 0原文

我需要能够确定文件是否超过一小时,如果是,则通过电子邮件、文本或页面通知我们的流程已开始。我需要任何以 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紅太極 2024-10-21 10:22:42

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文