public boolean delete()

in pekko-connectors-sample-rotate-logs-to-ftp/src/main/java/playground/filesystem/impl/JimfsFtpFile.java [199:210]


  public boolean delete() {
    boolean retVal = false;
    try {
      if (isRemovable()) {
        Files.delete(path);
        retVal = true;
      }
    } catch (IOException t) {
      LOG.error(t.getMessage());
    }
    return retVal;
  }