How do I make a directory outside the war
file of my web-app ? Till now I have been making the directory like :
(request.getServletContext().getRealPath("/")).mkdir()
But I want to create the directory outside the build
folder of my project ? How do I do this ?
(This is in-case a server doesn't unpack the war)