Logo

Programming-Idioms

  • Elixir
  • C#

Idiom #95 Get file size

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

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
using System.IO;
long? FileSize(string path) {
    if (!File.Exists(path)) {
        return null;
    }
    return (new FileInfo(filePath)).Length;
}

Assumes the file might not exist.
def main(path) do
  _x =
    path
    |> File.stat!()
    |> Map.get(:size)
end
with Ada.Directories; use Ada.Directories;
X : constant File_Size := Size (Path);

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