Logo

Programming-Idioms

  • Java
  • Php

Idiom #95 Get file size

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

$x = filesize($path);
import java.io.File;
long x = new File(path).length();
with Ada.Directories; use Ada.Directories;
X : constant File_Size := Size (Path);

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