X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FFileUtils.java;h=e62a7d600892584996bed6bdff1aee8aec075757;hb=1624d4fc89f17c4a6cdb80b7d4cc37a095b6fe67;hp=4d35cd2cca4ccc26a209551f41a9b1f0bfdf305d;hpb=2bb9cad4fa36d64cebbe09bc63732e8dbb4dcb32;p=jalview.git diff --git a/src/jalview/util/FileUtils.java b/src/jalview/util/FileUtils.java index 4d35cd2..e62a7d6 100644 --- a/src/jalview/util/FileUtils.java +++ b/src/jalview/util/FileUtils.java @@ -130,26 +130,39 @@ public class FileUtils } /* - * This method returns the basename of the first --append or --open value. - * Used primarily for substitutions in output filenames. + * This method returns the basename of File file */ public static String getBasename(File file) { + return getBasenameOrExtension(file, false); + } + + /* + * This method returns the extension of File file. + */ + public static String getExtension(File file) + { + return getBasenameOrExtension(file, true); + } + + public static String getBasenameOrExtension(File file, boolean extension) + { if (file == null) return null; - String basename = null; + String value = null; String filename = file.getName(); int lastDot = filename.lastIndexOf('.'); if (lastDot > 0) // don't truncate if starts with '.' { - basename = filename.substring(0, lastDot); + value = extension ? filename.substring(lastDot + 1) + : filename.substring(0, lastDot); } else { - basename = filename; + value = extension ? "" : filename; } - return basename; + return value; } /*