When calling unlink to delete files, if the file does not exist an ENOENT error is thrown. That generates more errors in the logs and is not needed. Instead, we can use fs.rm with force set to true so errors are not thrown when the file we are trying to delete does not exist.