Goooler commented on code in PR #1859: URL: https://github.com/apache/groovy/pull/1859#discussion_r1111190774
########## subprojects/groovy-nio/src/main/java/org/apache/groovy/nio/extensions/NioExtensions.java: ########## @@ -101,6 +101,36 @@ public static long size(Path self) throws IOException { return Files.size(self); } + /** + * Provide the extension of this path. + * + * @param self a path object + * @return the extension of this path (not including the dot), or an empty string if it doesn't have one. + * @since 5.0.0 + */ + public static String getExtension(Path self) { + final Path fileName = self.getFileName(); + final String name = fileName == null ? "" : fileName.toString(); Review Comment: Yeah, that's what I'm afraid. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@groovy.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org