Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7721207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:51:55+00:00 2026-06-01T03:51:55+00:00

In my application the user can drag and drop multiple text files onto a

  • 0

In my application the user can drag and drop multiple text files onto a GUI control to convert them to another format. Here is the relevant code:

    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);
    }

The problem is that when I drop multiple files on the GUI, only one of them actually gets processed. I have found that if I comment out the Regex line, all of the dropped files are processed. Am I missing something in my handling of regular expressions in this context?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T03:51:57+00:00Added an answer on June 1, 2026 at 3:51 am

    Try following variation of the method:

    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));
    }
    

    The main modification is use of using keyword which would guarantee disposal and closing of the file resource. If problem is not still resolved then try followings:

    • Do you have any global exception handlers? Make sure you check Debug > Exceptions… so that Visual Studio automatically breaks on the line where exception is thrown. See this article on how-to.
    • Make sure files are written at correct places. If files have full path then the Debug.WriteLine statement above would tell you were the files are being written.

    You should get at least 0 length file written on the disk if no exceptions are occurring.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to make an application which user can drag and drop tab to
I want to allow dropping of image files in my application: Users can Drag
I want to provide an user of my application with a drag and drop
In my application user can add there reminder for the specific day and reminder
I'm making a small tool application that user can minimize in the taskbar .
I have an view-based application where the user can do a lot of customization
I'm creating a Java application where the user can search through a list of
Currently I have a web application where a user can use dropdown lists to
In a rather simple ASP.NET application where the user can upload a image, mostly
I am trying to create an iPhone application where the user can add entries.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.