Java Data Type Tutorial - Java ProcessBuilder.directory(File directory)








Syntax

ProcessBuilder.directory(File directory) has the following syntax.

public ProcessBuilder directory(File directory)

Example

In the following code shows how to use ProcessBuilder.directory(File directory) method.

/*from   w  ww  .  ja  v a2s.  co  m*/

import java.io.File;

public class Main {

   public static void main(String[] args) {

      // create a new list of arguments for our process
      String[] list = {"notepad.exe", "test.txt"};

      // create the process builder
      ProcessBuilder pb = new ProcessBuilder(list);

      // set the working directory of the process
      pb.directory(new File("C:/"));
      System.out.println(pb.directory());
   }
}

The code above generates the following result.