Barak BN
Barak BN

Reputation: 558

Cleanup after sending a file in Play Framework

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?

Upvotes: 5

Views: 2059

Answers (2)

Manish
Manish

Reputation: 131

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)

Upvotes: 1

Bla...
Bla...

Reputation: 7288

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 })

Upvotes: 14

Related Questions