in pekko-connectors-sample-rotate-logs-to-ftp/src/main/java/playground/filesystem/impl/JimfsFtpFile.java [234:245]
public boolean mkdir() {
boolean retVal = false;
try {
if (isWritable()) {
Files.createDirectory(path);
retVal = true;
}
} catch (IOException t) {
LOG.error(t.getMessage());
}
return retVal;
}