String getMimeType(String path) { String extension = path.substring(path.lastIndexOf(".") + 1); return extension.toLowerCase(); }