[Mono-bugs] [Bug 580090] [PATCH]GetFiles fails on search patterns containing directories

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Sun Jul 4 12:48:31 EDT 2010


http://bugzilla.novell.com/show_bug.cgi?id=580090

http://bugzilla.novell.com/show_bug.cgi?id=580090#c2


Gonzalo Paniagua Javier <gonzalo at novell.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
           Severity|Normal                      |Major

--- Comment #2 from Gonzalo Paniagua Javier <gonzalo at novell.com> 2010-07-04 16:48:29 UTC ---
There is something else needed to make this work as MS. The output on windows
is:
-------------------------------
c:\dvp>.\dir.exe . test\*
\test\file1.txt
\test\file2.txt
\test\file3.txt
\test\file4.txt
-------------------------------

and with your patch in linux/mono:
-------------------------------
a at b:/tmp$ mono dir.exe . 'test/*'
/file1.txt
/file2.txt
/file3.txt
/file4.txt
-------------------------------

I made a couple of changes in the runtime for this output to be:
----------------------------------
a at b:/tmp$ mono dir.exe . 'test/*'
/test/file1.txt
/test/file2.txt
/test/file3.txt
/test/file4.txt
----------------------------------

This is fixed in svn trunk as of r159861.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list