Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

Idiom #95 Get file size

Assign to variable x the length (number of bytes) of the local file at path.

using System.IO;
long? FileSize(string path) {
    if (!File.Exists(path)) {
        return null;
    }
    return (new FileInfo(filePath)).Length;
}

Assumes the file might not exist.
using System.IO
var filePath = "Sample.txt";
var fileInfo = new FileInfo(filePath);
var _x = fileInfo.Length;

set the file path.
Then create and instance of the FleInfo class, by passing the file name.
Lastly, assign the fileinfo instance length property to x
with Ada.Directories; use Ada.Directories;
X : constant File_Size := Size (Path);

New implementation...
< >
programming-idioms.org