kb static method

double kb(
  1. int sizeInBytes
)

get file size in KB

Implementation

static double kb(int sizeInBytes) {
  return sizeInBytes / 1024;
}