in src/main/java/org/apache/sling/commons/jcr/file/internal/PathUtil.java [233:246]
static String getName(@NotNull String path) {
if ("/".equals(path)) {
return "";
}
// normalize path (remove . and ..)
path = normalize(path);
if ("/".equals(path)) {
return "";
}
// find the last slash
return path.substring(path.lastIndexOf('/') + 1);
}