length - a non-negative integer or nil.
For a binary file, the length is measured in units of the element type of the stream.
(with-open-file (s "decimal-digits.text" :direction :output :if-exists :error) (princ "0123456789" s) (truename s)) #P"A:>Joe>decimal-digits.text.1" (with-open-file (s "decimal-digits.text") (file-length s)) 10