You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by NanFei Wang <na...@hotmail.com> on 2005/11/21 00:41:32 UTC

Re: Net Disk Failure in JSP with Tomcat 5.5.9( or 5.5.X)

Hi,
The following seem simple question get no any response yet !
Is it really no solution ?

I made a Net Disk named P:\
The file ' test.jsp ' as following:
-----------------------------------------------------
<%@ page import="java.io.File" %>
<%
String net = "P:\\";
java.io.File netDir=new java.io.File(net);
out.print(net+" exist = "+netDir.exists()+"<br>");
out.print(net+" is Directory = "+netDir.isDirectory()+"<br>");
%>
-----------------------------------------------------

I got the following result when I use Apache Tomcat 5.5.9( or 5.5.X) Server 
:
****************************
P:\ exist = false
P:\ is Directory = false
*****************************

But I got the following when I use Tomcat 5.0.18 :
``````````````````````````````````````````
P:\ exist = true
P:\ is Directory = true
``````````````````````````````````````````

Can Anybody advise how to do to get net disk available using Tomcat 5.5.9 !

Thanks

NanFei 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org