Skip to Main Content
C# Cookbook, 2nd Edition
book

C# Cookbook, 2nd Edition

by Jay Hilyard, Stephen Teilhet
January 2006
Intermediate to advanced content levelIntermediate to advanced
1184 pages
43h 23m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook, 2nd Edition
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
694
|
Chapter 12: Filesystem I/O
be accurate for a stream you send to or receive from that other operating system. Of
course, if you are doing Web Services, newlines aren’t your biggest concern.
See Also
See the “Environment Class” topic in the MSDN documentation.
12.8 Creating, Writing to, and Reading from a File
Problem
You need to create a file—possibly for logging information to or for storing tempo-
rary information—and then write information to it. You also need to be able to read
the information that you wrote to this file.
Solution
To create, write to, and read from a logfile, we will use the FileStream and its reader
and writer classes. For example, we will create methods to allow construction, read-
ing to, and writing from a logfile. To create a logfile, you can use the following code:
FileStream fileStream = new FileStream(logFileName,
FileMode.Append,
FileAccess.Write,
FileShare.None);
To write text to this file, you can create a StreamWriter object wrapper around the
previously created
FileStream object (fileStream). You can then use the WriteLine
method of the StreamWriter object. The following code writes three lines to the file: a
string, followed by an integer, followed by a second string:
public static void WriteToLog(string logFileName, string data)
{
using (FileStream fileStream ...
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

Stephen Teilhet, Jay Hilyard
C# Cookbook

C# Cookbook

Joe Mayo
Head First C#, 4th Edition

Head First C#, 4th Edition

Andrew Stellman, Jennifer Greene

Publisher Resources

ISBN: 0596100639Supplemental ContentCatalog PageErrata