以所在项目为例:
File file1 = new File(request.getSession().getServletContext().getRealPath("/")+"file"); if(! file1.exists()){ file1.mkdirs(); }
request.getSession().getServletContext().getRealPath("/")输出的是F:JavaWebapache-tomcat-9.0.40webappsROOT 即子文件夹就包含WEB-INF的文件夹。
exists :判断是否存在
mkdirs :创建