Logo

Programming-Idioms

  • Go
  • Lisp
  • Ruby

Idiom #95 Get file size

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

(ql:quickload :osicat)
(defvar x (osicat-posix:stat-size (osicat-posix:stat #P"path")))
import "os"
info, err := os.Stat(path)
if err != nil {
	return err
}
x := info.Size()

info has type os.FileInfo .
x = File.size(path)
with Ada.Directories; use Ada.Directories;
X : constant File_Size := Size (Path);

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