(String f)
| 99 | } |
| 100 | |
| 101 | public static String getFileNameNoSuffix(String f) { |
| 102 | if ( f==null ) return null; |
| 103 | f = getFileName(f); |
| 104 | return f.substring(0, f.lastIndexOf('.')); |
| 105 | } |
| 106 | |
| 107 | public static String getFileName(String fullFileName) { |
| 108 | if ( fullFileName==null ) return null; |
no test coverage detected