Servlet Archives wrote:

> where would physically this tempdir will reside in my harddrive, is there
> anyway i shall crack this down..
>

Where it actually resides is totally up to your servlet container's
configuration.  You can find out where it is by asking:

    File tempDir = (File)
      getServletContext().getAttribute("javax.servlet.context.tempdir");
    String tempDirPath = tempDir.getAbsolutePath();

Craig McClanahan

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to