in reply to Byte Count

Obligatory reminder: -X tests set $! and return undef if the file doesn't exist (and presumably on other system errors, although I haven't tested).

$filesize = -s $filespec; die "error: $!" unless defined $filesize;

conv