0

每天我都会多次收到来自不同用户的 xml 文件。这些通过 FTP 传送到我驱动器上的文件夹,例如 D:\batch。今天我使用计划任务检查这些文件,该任务启动 ASP.NET 页面并处理找到的文件并回答上传者并结束。此任务每 15 分钟运行一次,但上传者希望更快地得到答案,所以我正在尝试完成此任务。我创建了一个监视文件夹的 Windows 服务,当创建一个文件时,它会处理它。

我遵循了几个不同的指南,但尤其是这个http://www.codeproject.com/Articles/32591/Creating-a-Windows-Service-for-Watching-System-Dir

使用第一个文件它可以工作,但每次添加第二个文件时,它都会崩溃:

Exception Info: System.IO.IOException
Stack:
   at System.IO.__Error.WinIOError(Int32, System.String)
   at System.IO.File.InternalCopy(System.String, System.String, Boolean, Boolean)
   at System.IO.File.Copy(System.String, System.String)
   at FileMonitor.FilKigger.Watcher_Created(System.Object, System.IO.FileSystemEventArgs)
   at System.IO.FileSystemWatcher.OnCreated(System.IO.FileSystemEventArgs)
   at System.IO.FileSystemWatcher.NotifyFileSystemEventArgs(Int32, System.String)
   at System.IO.FileSystemWatcher.CompletionStatusChanged(UInt32, UInt32,     System.Threading.NativeOverlapped*)
   at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32, UInt32, System.Threading.NativeOverlapped*)

这是怎么回事?

一些代码:

protected override void OnStart(string[] args)
    {
        FileSystemWatcher Watcher = new FileSystemWatcher();
        Watcher.Path = "D:\\FTP\\Batch\\";
        Watcher.IncludeSubdirectories = true;
        Watcher.Created += new FileSystemEventHandler(Watcher_Created);
        Watcher.Deleted += new FileSystemEventHandler(Watcher_Deleted);
        Watcher.EnableRaisingEvents = true;
    }

这里只是将文件复制到新文件夹的代码。

void Watcher_Created(object sender, FileSystemEventArgs e)
    {
        File.Copy(e.FullPath, "D:\\newFolder\\" + e.Name);
        Lg.WriteEntry("File moved", EventLogEntryType.Information);
    }

捕获异常只会留下文件,但当然会保持服务运行。

4

1 回答 1

0

将观察者更改为查找“_finish.txt”文件,用户在上传真实文件后发送该文件

Watcher = new FileSystemWatcher(ftpFolder, "*_finish.txt");

然后用“”替换_finish,我得到了保证上传完成的真实文件......

于 2012-07-31T10:38:01.383 回答