Beginning Microsoft® Visual C#® 2008
by Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White
Chapter 24. File System Data
Reading and writing files are essential aspects of many .NET applications. This chapter shows you how, touching on the major classes used to create, read from, and write to files, and the supporting classes used to manipulate the file system from C# code. Although you won't examine all of the classes in detail, this chapter goes into enough depth to give you a good idea of the concepts and fundamentals.
Files can be a great way to store data between instances of your application, or they can be used to transfer data between applications. User and application configuration settings can be stored to be retrieved the next time your application is run. Delimited text files, such as comma-separated files, are used by many legacy systems, and to interoperate with such systems you need to know how to work with delimited data. As you will see, the .NET Framework provides you with the necessary tools to use files effectively in your applications.
By the end of this chapter, you will have learned the following:
What a stream is and how .NET uses stream classes to access files.
How to use the
Fileobject to manipulate the file structure.How to write to, and read from, a file.
How to read and write formatted data from and to files.
How to read and write compressed files.
How to serialize and deserialize objects.
How to monitor files and directories for changes.
Streams
All input and output in the .NET Framework involves the use of streams. A stream is an abstract representation ...
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.
Read now
Unlock full access