Signature
String process_start_directory()
Parameters
return value : worker process start directory
Returns the directory captured when the native process started. It remains stable even if cwd_set() changes the current working directory.
Example
print(process_start_directory() != "" ? "have a start directory" : "none", "\n");
Output
have a start directory