The temporary files will get deleted when the objects they are created by get garbage collected. The latest codebases also set the temporary files to be deleted on system exit, but this does not happen in 2.1.
If you set the threshold property as it is set by default: # # The maximum size of a request that will have it's elements cached in # memory by TurbineUploadService class. # services.UploadService.size.threshold=10240 you should not get very many temp files as most of the post data will fall under that limit, and only moderately sized uploads will get written to disk. john mcnally On Thu, 2002-05-16 at 02:38, Matt Koranda wrote: > I've seen similar posts but no answer. I am using file upload based on the newApp >example. In both the newApp and my application I end up with several .tmp files >remaining after the action. They seem to contain values of some of the other fields. >How can I get rid of these? > > I am using 2.1 and tomcat. > > Thanks, > Matt -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
