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