Logo

Programming-Idioms

  • Pascal
  • Ada

Idiom #95 Get file size

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

with Ada.Directories; use Ada.Directories;
X : constant File_Size := Size (Path);
uses fileutil;
x := filesize(path);
#include <sys/stat.h>
struct stat st;
if (stat (path &st) == 0) x = st.st_size;

POSIX function stat avoids opening the file

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