java.lang.ProcessBuilder.directory()


java.lang.ProcessBuilder.directory()

package com.codingdict;



public class ProcessBuilderDemo {



   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);



      // get the working directory of the process

      System.out.println("" + pb.directory());

   }

}