StatEntry typedef

StatEntry = ({bool isDir, bool isLink, String path, int size})

A single find … -exec stat … entry: its absolute path, byte size and whether it is a directory or a symlink (leaf; never followed).

Implementation

typedef StatEntry = ({String path, int size, bool isDir, bool isLink});