Creates an handler that can work with files in HTTP request parts.
Creates an handler that can work with files in HTTP request parts.
import play.core.parsers.Multipart, Multipart.FileInfo import play.api.libs.iteratee.Iteratee val handler = Multipart.handleFilePart[List[Int]] { fileInfo => ??? // return corresponding Iteratee[Array[Byte], List[Int]] } // then use it Multipart.multipartParser[List[Int]](1024, handler)
Utilities for handling multipart bodies