I am trying to launch the default application registered for an extension specifying an additional argument:

 ProcessStartInfo p = new ProcessStartInfo();
 p.Arguments = "myargument";
 p.FileName = "file.ext";
 Process.Start(p);

The application starts correctly opening the specified file. The problem is that it is getting just one parameter (the name of the file), totally ignoring the additional "Arguments".
Is it possible to do what I want? Am I doing something wrong?

Thanks in advance for any help,
Paolo

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I believe this is expected. Behind the scenes, Windows is finding the default application in the registry and creating a new process and passing your file name to it. I get the same behavior if I go to a command prompt and type "filename.ext argument", that my arguments are not passed to the application.

What you probably need to do is find the default application yourself by looking in the registry. Then you can start that process with arguments, instead of trying to start by filetype association. There is an answer here on how to find the default application in the registry:

Finding the default application for opening a particular file type on Windows

link|improve this answer
Hi irritate, thanks for your answer! It's so sad I have to switch from these 4 lines to querying registry keys... – Paull Feb 16 '11 at 14:17
feedback

what exactly is your "argument", does it have spaces, backslash, etc?

    Process process = new Process();
    process.StartInfo.FileName = @"C:\process.exe";
    process.StartInfo.Arguments = @"-r -d something else";
    process.StartInfo.CreateNoWindow = false;
    process.StartInfo.UseShellExecute = false;
    process.Start();

Is there any reason why you cant start the app, then use the extension and arguments in your arguments?

link|improve this answer
Hi, my argument has no spaces, but my FileName is not an executable like in your sample code. I am trying to open an application via extension association. – Paull Feb 16 '11 at 14:10
right but is there a "need" to do it that way? – Ryan Feb 16 '11 at 14:11
I have to launch an editor passing the file to edit and an argument for entering a special mode. The idea is that the file extension is always known but the executable location is not. – Paull Feb 16 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.