in src/main/java/org/apache/datasketches/Files.java [357:365]
public static long size(final FileChannel fc) {
final long sz;
try {
sz = fc.size();
} catch (final IOException e) {
throw new RuntimeException(e);
}
return sz;
}