gpt4 book ai didi

c# - 如果给定路径中存在文件,则每秒检查一次计时器

转载 作者:行者123 更新时间:2023-11-30 16:05:24 25 4
gpt4 key购买 nike

我有一个用 C# 制作的简单控制台应用程序,我在其中创建了一个 zip 文件。在另一个控制台应用程序中,我让计时器每秒计时一次,以检查我在第一个应用程序中创建 .zip 文件的目录是否包含 .zip 文件,但它不起作用。

我实现了代码:

public class Program
{
private static System.Timers.Timer aTimer;
private static String path = "C:\\Path\\*.zip";

public static void Main()
{
SetTimer();

Console.WriteLine("\nChecking the ZIP file is created on the directory...\n");
Console.WriteLine("The application started at {0:HH:mm:ss}", DateTime.Now);
Console.ReadLine();


}

private static void SetTimer()
{
if (!File.Exists(path))
{
// Create a timer with a two second interval.
aTimer = new System.Timers.Timer(1000);
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += OnTimedEvent;
aTimer.AutoReset = true;
aTimer.Enabled = true;
}
else
{
Console.WriteLine("ZIP file created.");
aTimer.Stop();
aTimer.Dispose();

Console.WriteLine("Terminating the application...");
}
}

private static void OnTimedEvent(Object source, ElapsedEventArgs e)
{
Console.WriteLine("The Elapsed event was raised at {0:HH:mm:ss}",
e.SignalTime);
}


}

谁能帮帮我?谢谢!

最佳答案

File.Exists 不支持像 *

这样的通用通配符

甚至,FileSystemWatcher是完成此类任务的更好方法,这是您可以立即使用的方法来解决您的问题

   if (!new DirectoryInfo("c:\\path").EnumerateFiles("*.zip").Any())
{
// Create a timer with a two second interval.
aTimer = new System.Timers.Timer(1000);
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += OnTimedEvent;
aTimer.AutoReset = true;
aTimer.Enabled = true;
}

关于c# - 如果给定路径中存在文件,则每秒检查一次计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33633913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com