class EacRubyUtils::Fs::ClearableDirectory

def clearable_negate_message

def clearable_negate_message
  return if !exist? || empty?
  return "Path \"#{self}\" exists, is not empty and is not a directory" unless directory?
  return if clearable_note_file.exist?
  "Directory \"#{self}\" is not empty and does not have a #{CLEARABLE_BASENAME} file"
end