Skip to Content
C# Cookbook
book

C# Cookbook

by Stephen Teilhet, Jay Hilyard
January 2004
Beginner to intermediate
864 pages
22h 18m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook

11.20. Write to Multiple Output Files at One Time

Problem

Any output that is written to one file must also be written to at least one other file. Essentially, you want to end up with at least the original file and the duplicate file.

Solution

Create a class called MultiWriter with the ability to write to multiple files from a single WriteLine call.

To create a set of files, just pass the file paths you would like to use to the constructor like this:

// Create a list of three file names
string[] names = new string[3];
for (int i=0;i<3;i++)
{
    names[i] = Path.GetTempFileName( );
}
MultiWriter multi = new MultiWriter(names);

Next, perform the writes and close the instance:

multi.WriteLine("First Line");
multi.WriteLine("Second Line");
multi.WriteLine("Third Line");
multi.Close( );

Here is the implementation of the MultiWriter class:

class MultiWriter : IDisposable { FileStream[] _streams; string [] _names; int _streamCount = 0; bool _disposed = false; public MultiStream(string[] fileNames) { try { // copy the names _names = (string[])fileNames.Clone( ); // set the number of streams _streamCount = fileNames.Length; // make the stream array _streams = new FileStream[_streamCount]; for(int i = 0; i < _streams.Length; i++) { // create this filestream _streams[i] = new FileStream(_names[i], FileMode.Create, FileAccess.ReadWrite, FileShare.None); } } catch(IOException ioe) { Console.WriteLine(ioe.ToString( )); } } public void WriteLine(string text) { // add a newline text += Environment.NewLine; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Joe Mayo
C# Cookbook, 2nd Edition

C# Cookbook, 2nd Edition

Jay Hilyard, Stephen Teilhet
ASP.NET Cookbook

ASP.NET Cookbook

Michael A Kittel, Geoffrey T. LeBlond

Publisher Resources

ISBN: 0596003390Supplemental ContentCatalog PageErrata