mb static method

double mb(
  1. int sizeInBytes
)

get file size in MB

Implementation

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