== `ext` The headers in `process/ext` provides features to obtain information about third part processes. [source,cpp] ---- // Get the cmd line used to launche the process template shell cmd(basic_process_handle & handle, error_code & ec); template shell cmd(basic_process_handle & handle); shell cmd(pid_type pid, error_code & ec); shell cmd(pid_type pid); // Get the current working directory of the process. template filesystem::path cwd(basic_process_handle & handle, error_code & ec); template filesystem::path cwd(basic_process_handle & handle) filesystem::path cwd(pid_type pid, error_code & ec); filesystem::path cwd(pid_type pid); // Get the current environment of the process. template env_view cwd(basic_process_handle & handle, error_code & ec); template env_view cwd(basic_process_handle & handle) env_view env(pid_type pid, error_code & ec); env_view env(pid_type pid); // Get the executable of the process. template filesystem::path exe(basic_process_handle & handle, error_code & ec); template filesystem::path exe(basic_process_handle & handle) filesystem::path exe(pid_type pid, error_code & ec); filesystem::path exe(pid_type pid); ---- WARNING: The function may fail with "operation_not_supported" on some niche platforms. NOTE: On windows overloads taking a `HANDLE` are also available.