2

我开发了一个文件监视程序来监视一个文件夹,如果文件有任何更改,它会将文件复制到另一个文件夹。

但是我发现在写入原始文件时会出现错误消息(例如文件正在被另一个应用程序处理......)似乎在运行[System.IO.File.Copy]复制到另一个文件夹时文件被锁定。

有没有什么办法可以避免原文件被filewatcher/System.IO.File.Copy锁定?谢谢。

以下是我的代码:

    private void fileWatcher_Changed(object sender, System.IO.FileSystemEventArgs e)
    {
        DateTime lastWriteTime = File.GetLastWriteTime(e.FullPath); 

        if (lastWriteTime != lastRead)
        {


            txtLog.Text += e.ChangeType + ": " + e.FullPath + "\r\n";
            txtLog.Focus();
            txtLog.Select(txtLog.TextLength, 0);
            txtLog.ScrollToCaret();

            try
            {
                string myPath = e.FullPath;
                string myFile = e.Name;

                System.IO.FileInfo myFileInfo = new System.IO.FileInfo(myFile);

                string myAttibs = myFileInfo.Attributes.ToString();

                System.IO.File.Copy(myPath, @"D:\\Folder\\Output\\" + myFile, true);

                lastRead = lastWriteTime; 

            }
            catch (System.IO.IOException ex)
            {
                System.IO.IOException myex = ex;
            }
            catch (System.Exception ex)
            {
                System.Exception myex = ex;
            }

        }
    }
4

2 回答 2

3

我遇到了同样的问题。我不喜欢我的解决方案,因为它感觉很老套。但它有效:

FileSystemWatcher fsWatcher = new FileSystemWatcher();
fsWatcher.Created += new FileSystemEventHandler( fsWatcher_Created );

private void fsWatcher_Created( object sender, FileSystemEventArgs e )
{
    RaiseFileFoundEvent( e.FullPath );
    while ( !TestOpen( e.FullPath ) ) ;
    RaiseFileCopyDoneEvent( e.FullPath );
}

private bool TestOpen( string filename )
{
    try
    {
        FileStream fs = new FileStream( filename, FileMode.Open, 
            FileAccess.Write, FileShare.None );
        fs.Close();
        return true;
    }
    catch ( Exception )
    {
        return false;
    }
}

private void RaiseFileFoundEvent( string fullPath )
{
    // a file is found, but the copy is not guaranteed to be finished yet.
}

private void RaiseFileCopyDoneEvent( string fullPath )
{
    // the file is found, and we know the copy is done.
}
于 2012-05-17T18:04:28.450 回答
1

没有解决这个问题的好方法。如果您正在将文件复制到新位置,而另一个应用程序想要写入它,程序应该如何运行?

如果您愿意复制损坏的文件(在您复制时被写入),您必须编写自己的 Copy 方法,该方法使用FileShare.ReadWrite.

于 2012-05-17T17:57:46.973 回答