Returns the filename without extension
()
| 216 | * Returns the filename without extension |
| 217 | */ |
| 218 | public String getBaseName() { |
| 219 | return FileUtils.splitFilename(file).basename; |
| 220 | } |
| 221 | |
| 222 | public boolean isExtension(String... extensions) { |
| 223 | return isExtension(Arrays.asList(extensions)); |
no test coverage detected