使用正则表达式时,处理多个拖放文件失败

时间:2012-03-26 10:30:22

标签: c#

在我的应用程序中,用户可以将多个文本文件拖放到GUI控件上,以将它们转换为另一种格式。以下是相关代码:

    private void panelConverter_DragDrop(object sender, DragEventArgs e)
    {
        string[] filenames = (string[])e.Data.GetData(DataFormats.FileDrop);
        foreach (string filename in filenames)
        {
            convertFile(filename);
        }
    }

    private void convertFile(string filename)
    {
        // build name of output file
        string convertedFile = Path.ChangeExtension(filename, ".out");

        // open input file for reading
        FileInfo source = new FileInfo(filename);
        StreamReader srcStream = source.OpenText();

        // open output file for writing
        StreamWriter dstStream = new StreamWriter(convertedFile);

        // loop over input file
        string line;
        do
        {
            // get next line from input file
            line = srcStream.ReadLine();

            if (!Regex.IsMatch(line, @"fred=\d+"))
            {
                dstStream.WriteLine(line);
                dstStream.Flush();
            }
        } while (line != null);
    }

问题是,当我在GUI上删除多个文件时,实际上只有其中一个文件被处理。我发现,如果我注释掉Regex行,则会处理所有删除的文件。我在这种情况下处理正则表达式时是否遗漏了一些内容?

1 个答案:

答案 0 :(得分:0)

尝试以下方法的变体:

private void convertFile(string filename)
{
    // build name of output file
    string convertedFile = Path.ChangeExtension(filename, ".out");

    // open input file for reading
    FileInfo source = new FileInfo(filename);
    StreamReader srcStream = source.OpenText();

    // open output file for writing
    using (StreamWriter dstStream = File.CreateText(convertedFile))
    {
        // loop over input file
        string line;
        do
        {
            // get next line from input file
            line = srcStream.ReadLine();

            if (!Regex.IsMatch(line, @"fred=\d+"))
            {
                dstStream.WriteLine(line);
                dstStream.Flush();
            }
        } while (line != null);
    }

    Debug.WriteLine(string.Format("File written to: {0}", convertedFile));
}

主要修改是使用关键字来保证文件资源的处理和关闭。如果问题仍未解决,请尝试以下方法:

  • 您是否有任何全局异常处理程序?请务必检查Debug>异常...以便Visual Studio在抛出异常的行上自动中断。有关操作方法,请参阅this article
  • 确保文件写在正确的位置。如果文件具有完整路径,则上面的Debug.WriteLine语句将告诉您正在写入文件。

如果没有发生异常,您应该至少在磁盘上写入0个长度文件。