The FileStream is a class used for reading and writing files in C#. It is part of the System.IO namespace. To manipulate files using FileStream, you need to create an object of FileStream class. This object has four parameters; the Name of the File, FileMode, FileAccess, and FileShare.
C# FileStream example: writing single byte into file
Let’s see the simple example of FileStream class to write single byte of data into file. Here, we are using OpenOrCreate file mode which can be used for read and write operations.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.IO; public class FileStreamExample { public static void Main(string[] args) { FileStream f = new FileStream("e:\\b.txt", FileMode.OpenOrCreate);//creating file stream f.WriteByte(65);//writing byte into stream f.Close();//closing stream } } |
Output:
A
C# FileStream example: writing multiple bytes into file
Let’s see another example to write multiple bytes of data into file using loop.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; using System.IO; public class FileStreamExample { public static void Main(string[] args) { FileStream f = new FileStream("e:\\b.txt", FileMode.OpenOrCreate); for (int i = 65; i <= 90; i++) { f.WriteByte((byte)i); } f.Close(); } } |
Output:
1 2 3 |
ABCDEFGHIJKLMNOPQRSTUVWXYZ |
C# FileStream example: reading all bytes from file
Let’s see the example of FileStream class to read data from the file. Here, ReadByte() method of FileStream class returns single byte. To all read all the bytes, you need to use loop.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System; using System.IO; public class FileStreamExample { public static void Main(string[] args) { FileStream f = new FileStream("e:\\b.txt", FileMode.OpenOrCreate); int i = 0; while ((i = f.ReadByte()) != -1) { Console.Write((char)i); } f.Close(); } } |
Output:
1 2 3 |
ABCDEFGHIJKLMNOPQRSTUVWXYZ |