writing afile
hello;
I want to write a file in my web application
MyApp/ tempdata
String path1 = request.getSession().getServletContext().getRealPath("/");
String path2 = path1 +"\\tempData\\myImage.jpg";
local on home pc works fine
on the server my web hosterone see
files//tempData//myImage.jpg in the rro folder "myApp"
and nothing in tempData
what shoud be the problem

