Get the number of bytes in a file in C#


FileInfo type has a Length property that determines how many bytes a file has.

Firstly, set the file −

FileInfo file = new FileInfo("D:\
ew");

Now use the Length property −

file.Length

Here is the complete code −

Example

using System;
using System.Linq;
using System.IO;
class Program {
   static void Main() {
      FileInfo file = new FileInfo("D:\
ew");       long res = file.Length;       Console.WriteLine("Bytes: "+res);    } }

Output

The following is the output −

3259244

Updated on: 07-Apr-2020

258 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements