[Mono-bugs] [Bug 74419][Min] Changed - System.IO.Directory.Exists throws exception rather than returning false

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 5 May 2005 20:13:39 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by bmaurer@users.sf.net.

http://bugzilla.ximian.com/show_bug.cgi?id=74419

--- shadow/74419	2005-04-18 15:27:22.000000000 -0400
+++ shadow/74419.tmp.665	2005-05-05 20:13:38.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 74419
 Product: Mono: Class Libraries
 Version: 1.0
 OS: unknown
 OS Details: windows xp
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Minor
 Component: CORLIB
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: arw1961@yahoo.com               
 QAContact: mono-bugs@ximian.com
@@ -75,6 +75,20 @@
 
 This was the only bug I ran into when I tried the
 test cases for the non-gui portion of xsdbXMLcs from
 http://xsdb.sourceforge.net, which was a nice surprise.
 after adding a workaround everything else seems to
 work great.  Congrats!
+
+------- Additional Comments From bmaurer@users.sf.net  2005-05-05 20:13 -------
+[benm@omega benm]$ cat zzz.cs
+class X {
+        static void Main ()
+        {
+                System.Console.WriteLine(System.IO.Directory.Exists
+("http://www.example.com/index.html"));
+        }
+}
+[benm@omega benm]$ mcs zzz.cs
+[benm@omega benm]$ mono zzz.exe
+False
+