packageat.ac.tuwien.sepm.assignment.individual.persistence;importorg.springframework.web.multipart.MultipartFile;importjava.io.IOException;publicinterfaceFileDao{/** * Used for saving files on the local file system * @param file file to save
/** * Used for deleting file from the local filesystem * @param fileName file to delete * @throws IOException if something goes wrong with deleting the file */voiddelete(StringfileName)throwsIOException;