I'm using Ok.sendFile to download a file from the server.
For this to work I need to create the file in the local file system of the server.
However, since the server has no use for the file itself and a new file is created per user-request, I'd like to delete the file after the download operation completed.
How can I do this, considering I have already completed my action and returned a Result?
def index = Action {
val fileToServe = generateFile("fileToServe.pdf")
Ok.sendFile(new java.io.File(fileToServe))}
// How can I "clean-up" fileToServe.pdf after the d/l completes?
I recommend you to use play.api.libs.Files.TemporaryFile
, so that you can use onClose
argument of the Ok.sendFile
method.
val fileToServe = TemporaryFile(new File("/tmp/" + tmpname))
Ok.sendFile(fileToServe.file, onClose = () => { fileToServe.clean })
In Play 2.6.x you can use below code to cleanup files:
val f = new File("/tmp/text.csv")
val name = "text.csv"
Ok.sendFile(content = f,inline = false,fileName = _ => name,
onClose = () => f.delete)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With