md5 abstract method

String md5(
  1. String absPath
)

Returns the lowercase hex md5 digest of the file content at absPath. Computed on demand each call (no caching) so the result reflects the current on-disk bytes.

@param absPath Absolute path of the file to hash. @return 32-character lowercase hex digest. @throws FileSystemException When the file does not exist.

Implementation

String md5(String absPath);