Folks,

I am using this tap5 UploadedFile


                trailsBlob.setContentType(file.getContentType());
                trailsBlob.setFileName(file.getFileName());
                trailsBlob.setFilePath(file.getFilePath());
                trailsBlob.setNumBytes(new Long(file.getSize()));
                trailsBlob.setBytes(data);

And I want to track what the original filename of the file was that got 
uploaded.

This is naturally forensic evidence.

                trailsBlob.setFileName(file.getFileName());
                trailsBlob.setFilePath(file.getFilePath());

The above two calls are returning the same thing... just the filename. I need 
filepath.

No path is found anywhere.

Does anyone know why? Does anyone know how I can obtain the original filepath ?

Best Regards and thanks
kcola...@live.com
 

                                          

Reply via email to