Horje
c# get file size in bytes Code Example
c# get file size in bytes
long _fileSize = new System.IO.FileInfo(filePath).Length;
C# get size of file
// Get the information about a file
FileInfo fi = new FileInfo(file);
// Print the file size to console
Console.WriteLine($"File size: {fi.Length} bytes");




Csharp

Related
c# random number Code Example c# random number Code Example
unity key detection Code Example unity key detection Code Example
convert string array to int C# Code Example convert string array to int C# Code Example
c# store byte array as string Code Example c# store byte array as string Code Example
center an image horizontally and vertically Code Example center an image horizontally and vertically Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9