in pekko-connectors-sample-ftp-to-file/src/main/java/playground/filesystem/impl/JimfsFtpFile.java [89:96]
public boolean isHidden() {
try {
return Files.isHidden(path);
} catch (IOException t) {
LOG.error(t.getMessage());
}
return false;
}