I\'m a Grails beginner, so please be patient with me. Currently I\'m having hard times manipulating file uploads. As far as I understand using request.getFile() I c
request.getFile()
Or you can get uploaded file properties directly without using CommonsMultipartFile.
def ufile = request.getFile("fileInputName") println(ufile.contentType) println(ufile.originalFilename) println(ufile.size)