| java.lang.Object uk.org.ponder.stringutil.FilenameUtil
FilenameUtil | public class FilenameUtil (Code) | | author: Bosmon author: The class FilenameUtil contains various useful utility methods for operating on filenames. |
Method Summary | |
public static String | getDirectory(String filename) | public static String | getExtension(String filename) | public static String | getStem(String filename) Return the stem of the supplied filename, containing the portion of the filename
up to the last "." character, or the entire filename if no "." character is
found.
Parameters: filename - The filename for which the stem is required. |
getStem | public static String getStem(String filename)(Code) | | Return the stem of the supplied filename, containing the portion of the filename
up to the last "." character, or the entire filename if no "." character is
found.
Parameters: filename - The filename for which the stem is required. The stem of the filename. |
|
|