private boolean Createdir(String DirName)
    {
      try
      {
         String tempFilePath = getServletContext().getRealPath("");
         tempFilePath = tempFilePath + "\\" + DirName;
         File tempDir = new File(tempFilePath);
         tempDir.mkdir();
      }
      catch(Exception exp)
      {
          System.err.println("Createdir error" + exp.getMessage());   
          return false;
      }
        return true;
    }