I'm having trouble creating a folder relative to my webapp somewhere in myApp/WebContent/resources/ folder where to save data.
String folderPath="/WebContent/resources/"+title;
File folder=new File(folderPath);
if(!folder.exists())
System.out.println("Folder created "+folder.mkdir());
the output is always false