[Mono-bugs] [Bug 371567] Process does not work correctly with filenames containing #

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon May 12 16:31:04 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=371567

User gert.driesen at pandora.be added comment
https://bugzilla.novell.com/show_bug.cgi?id=371567#c2


Gert Driesen <gert.driesen at pandora.be> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |gert.driesen at pandora.be
             Status|RESOLVED                                        |REOPENED
         Resolution|FIXED                                           |




--- Comment #2 from Gert Driesen <gert.driesen at pandora.be>  2008-05-12 14:31:03 MST ---
Dick, this still does not appear to be fixed:

using System;
using System.Diagnostics;
using System.Globalization;

class Program
{
        static void Main ()
        {
                Process p = new Process ();
                p.StartInfo.FileName = "echo";
                p.StartInfo.Arguments = "http://www.google.be#whatever";
                p.StartInfo.RedirectStandardOutput = true;
                p.StartInfo.UseShellExecute = false;
                p.Start ();
                p.WaitForExit ();

                string result = p.StandardOutput.ReadToEnd ();
                Console.WriteLine (result);
        }
}


-- 
Configure bugmail: https://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