Click here to Skip to main content
Click here to Skip to main content

Redirecting Text Output to a File from a Console Application

By , 17 Jun 2008
 

Introduction

I decided to write this article after being unable to find any example code on how to redirect console output to a file. There were examples of writing to a memory stream but I needed to output to a file because I was worried about the potential size of the memory stream required to do what I wanted. I had much help from my friend Armand so I would like to have him credited as a major contributor.

Background

I was experiencing errors when I used the redirection within the arguments sent to the process.

My code was written to back up a MySQL database using the tool mysqldump.exe but it should be easily changed to work with other console applications.

Using the Code

The sample is quite small. I have used comments to describe the process.

StreamWriter _outputStream;

// Called asynchronously with a line of data
private void OnDataReceived(object Sender, DataReceivedEventArgs e)
{
    if ((e.Data != null)&&(_outputStream != null))
        _outputStream.WriteLine(e.Data);
}

public void BackupLocalDatabase(string DatabaseName, string UserID, string Password,
    string OutputFilename)
{
#region BackupLocalDatabase
    string fnName = "BackupLocalDatabase";
    try
    {
        _outputStream = new StreamWriter(OutputFilename);
        try
        {
            // --databases to force CREATE DATABASE
            // --hex-blob to force output of blobs as hex strings
            string _args = string.Format(
                " --databases {0} --user={1} --password={2} --hex-blob",
                DatabaseName, UserID, Password);

            // Info object
            ProcessStartInfo _info = new ProcessStartInfo("mysqldump");
            _info.Arguments = _args;
            _info.UseShellExecute = false;
            _info.RedirectStandardError = true;
            _info.RedirectStandardOutput = true;

            // Process object
            Process _process = new Process();
            _process.StartInfo = _info;

            // Set up the event handler to call back with
            // each line of output
            _process.OutputDataReceived += new DataReceivedEventHandler(OnDataReceived);
            _process.Start();
            _process.BeginOutputReadLine();
            _process.WaitForExit();

            //TODO error checks here

        }
        finally
        {
            _outputStream.Flush();
            _outputStream.Close();
        }
    }
    catch (Exception e)
    {
        LogException(fnName, e);
        throw e;
    }
#endregion
}// function

History

2008-06-16 Written

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

czeshirecat
United Kingdom United Kingdom
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionCould you please improve your article? PinmemberCuchuk Sergey23 Jun '08 - 1:11 
GeneralInteresting Pinmembermerlin98118 Jun '08 - 3:50 
GeneralRe: Interesting PinmemberCuchuk Sergey23 Jun '08 - 1:12 
GeneralRe: Interesting Pinmemberwizardzz11 Dec '12 - 11:00 
QuestionWhat problems? PinmemberPIEBALDconsult17 Jun '08 - 6:01 
QuestionAm I missing something obvious? PinmemberHumble Programmer17 Jun '08 - 5:52 
AnswerRe: Am I missing something obvious? PinmemberCuchuk Sergey23 Jun '08 - 1:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 17 Jun 2008
Article Copyright 2008 by czeshirecat
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid