My dynamic web project on eclipse creates temp file in directory which is in "WebContent" folder(so the path to temp file "abc" is "myapp/tmp/abc").
But I can't access that file at runtime. I can access it only after I refresh directory "tmp" in eclipse. Is there any ability to access the temp files at runtime? (I completely new to java web dev)
Update: It seems that if I copy my project to my local Tomcat(which is not related with my IDE) or to server in the Internet - the errors disappear and everything works fine.