toInfo method

String toInfo()

Implementation

String toInfo() {
  var execStr = executable ? ' (EXEC)' : '';
  var compressedStr = compressed ? ' (COMP)' : '';

  return '$filePath ($length bytes)$execStr$compressedStr';
}