# process.get_current_dir ## Function Read the current builder working directory configuration. ## Syntax ```bt process(program).get_current_dir() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | String/Empty | Returns the path string if set; returns Empty if not set. | ## Example ```bt cmd = process('cmd') result = cmd.get_current_dir() // Output: print result ``` ## Notes - Only the builder configuration is returned, the current directory of the system is not read.