[Mono-bugs] [Bug 58116][Maj] Changed - DirectoryInfo.GetFiles fails on path names containing a '?'

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 7 May 2004 10:20:26 -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 dick@ximian.com.

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

--- shadow/58116	2004-05-07 07:17:37.000000000 -0400
+++ shadow/58116.tmp.30597	2004-05-07 10:20:26.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 58116
 Product: Mono: Class Libraries
 Version: unspecified
 OS: unknown
 OS Details: 
-Status: REOPENED   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Major
 Component: System
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: jorn@nl.linux.org               
 QAContact: mono-bugs@ximian.com
@@ -68,6 +68,15 @@
 ------- Additional Comments From dick@ximian.com  2004-05-07 07:17 -------
 I tried to create a file containing '?' on windows but it wouldn't let
 me.  Files exported by samba seem to have ?s mangled.
 
 Therefore I don't think we need to care about windows breaking because
 it shouldn't happen anyway.
+
+------- Additional Comments From dick@ximian.com  2004-05-07 10:20 -------
+The problem in this case is that the path we are giving to
+FindFirstFile is "..../Koh?/*"
+
+Windows specifically gives errors if there are metachars in any path
+component other than the last one.
+
+I've commented out that check for now.