Fri. Dec 12th, 2025
exports.func = (req, res) => {
  const fpath = res.locals.fpath
  res.on('finish', () => {
    fs.unlink(fpath, (err) => {
      if(err) { throw err }
      console.log(`unlink ${fpath}`) 
    })
  }
}