I have this method which handles a file upload:
public void upload(FileUploadEvent event) {
// things
}
I need to show the local path of the file that the user is trying to upload. Is there a way to get it through the FileUploadEvent
object (or from somewhere else) ?
Thanks.