Check out example codes for "C# get size of file". It will help you in understanding the concepts better.
Code Example 1
// Get the information about a file
FileInfo fi = new FileInfo(file);
// Print the file size to console
Console.WriteLine($"File size: {fi.Length} bytes");
Learn ReactJs, React Native from akashmittal.com