public boolean isDirectory()

in src/main/java/org/apache/sling/commons/jcr/file/internal/JcrFile.java [156:163]


    public boolean isDirectory() {
        logger.info("is directory {}", path);
        try {
            return fileSystem.provider().isDirectory(getNode());
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }