Answers for "c# get file size in mb or kb"

C#
7

c# get file size in bytes

long _fileSize = new System.IO.FileInfo(filePath).Length;
Posted by: Guest on January-13-2021

C# Answers by Framework

Browse Popular Code Answers by Language