String newpath= "/img/system/other.png";
ExternalContext exContext = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest request = (HttpServletRequest) exContext.getRequest();
File file = new File(request.getRealPath(newpath));
if(file.isFile)
{
...
}
ExternalContext exContext = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest request = (HttpServletRequest) exContext.getRequest();
File file = new File(request.getRealPath(newpath));
if(file.isFile)
{
...
}