/** * @author Arthur Carvalho * @since 28/09/2011 * @param imovelAtlzCadastralId Id da ordem de serviço * @param photoTypeId Id do tipo da foto * @return se o arquivo foi removido */ public static boolean deletePhotoFileByPath(String path) { return (Util.getPhotoFileByPath(path)).delete(); }
public static boolean photoExistsByPath(String path) { return (Util.getPhotoFileByPath(path)).exists(); }