https://bugzilla.novell.com/show_bug.cgi?id=676934
https://bugzilla.novell.com/show_bug.cgi?id=676934#c1 --- Comment #1 from David Schmitt <[email protected]> 2011-03-04 13:10:12 UTC --- This seems to be caused by Directory.GetDirectories("some file name") to return "some file name" instead of barfing up: I used this as testcase: public static void Main(string[]args) { foreach(var s in Directory.GetDirectories(args[0])) { Console.WriteLine(s); } } calling that with a directory name as argument produces the expected output, but calling it with a filename, returns the name, instead of dying. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
