in pekko-connectors-sample-rotate-logs-to-ftp/src/main/java/playground/filesystem/impl/NameEqualsPathFilter.java [23:29]
public boolean accept(Path entry) throws IOException {
if (caseInsensitive) {
return entry.getFileName().toString().equalsIgnoreCase(nameToMatch);
} else {
return entry.getFileName().toString().equals(nameToMatch);
}
}