vote up 4 vote down star

I'm firing off a java app from inside of a C# .Net console app. Works fine for the case where the java app doesn't care what the "default" directory is, but fails for a Java app that only searches the current directory for support files.

Is there a process parameter that can be set to specify the default directory that a process is started in?

flag

75% accept rate

6 Answers

vote up 9 vote down check

Yes! ProcessStartInfo Has a property called WorkingDirectory, just use:

var startIngo = new ProcessStartInfo();
startIngo.WorkingDirectory = // working directory
// set additional properties 

Process proc = Process.Start(startIngo);
link|flag
vote up 4 vote down

Use the ProcessStartInfo.WorkingDirectory property.

Docs here.

link|flag
vote up 2 vote down

Use the ProcessStartInfo class and assign a value to the WorkingDirectory property.

link|flag
vote up 2 vote down

The Process.Start method has an overload that takes an instance of ProcessStartInfo. This class has a property called "WorkingDirectory".

Set that property to the folder you want to use and that should make it start up in the correct folder.

link|flag
vote up 2 vote down

Use the ProcessStartInfo.WorkingDirectory property to set it prior to starting the process. If the property is not set, the default working directory is %SYSTEMROOT%\system32.

You can determine the value of %SYSTEMROOT% by using:

string _systemRoot = Environment.GetEnvironmentVariable("SYSTEMROOT").

Here is some sample code that opens Notepad.exe with a working directory of %ProgramFiles%:

ProcessStartInfo _processStartInfo = new ProcessStartInfo();
_processStartInfo.WorkingDirectory = @"%ProgramFiles%";
_processStartInfo.FileName = @"Notepad.exe";
_processStartInfo.Arguments = "test.txt";
_processStartInfo.CreateNoWindow = true;
Process myProcess = Process.Start(_processStartInfo);

There is also an Environment variable that controls the current working directory for your process that you can access directly through the Environment.CurrentDirectory property .

link|flag
vote up 1 vote down

There is WorkingDirectory property in ProcessStartInfo, which you can use as Process.Start parameter.

link|flag

Your Answer

Get an OpenID
or

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