ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
Generate and return the path separator character used by the runtime processor shell for separating paths from each other in the PATH
environmental variable.
More...
Generate and return the path separator character used by the runtime processor shell for separating paths from each other in the PATH
environmental variable.
The path separator character returned by this generic interface can be used for splitting the contents of the processor environmental PATH
variable to separate directory paths.
[in] | mold | : The input scalar character of kind any supported by the processor (e.g., SK, SKA, SKD , or SKU) of length 1 . The value of mold s ignored.However, its kind type parameter is used to to set the kind type parameter of the output dirseps .(optional, default = SK_" " where SK refers to the default character kind SK.) if and only if an error occurs while inferring the system shell directory separator.(optional. If missing and a runtime error occurs, the program will halt by calling error stop .) |
[out] | failed | : The output scalar logical of default kind LK that is .true. if and only if an error occurs while the procedure is performing the task.(optional. If missing and a runtime error occurs, the program will halt by calling error stop .) |
[in,out] | errmsg | : The input/output scalar character of default kind SK of arbitrary length type parameter.If an error occurs, errmsg will be set to a descriptive message about the nature of the runtime error.A length of LEN_IOMSG characters is likely sufficient to capture most error messages in full. (optional. If missing, no error message will be output. Its presence is relevant only if failed is also present.) |
pathsep
: The output scalar character
of default kind SK of length type parameter of 1
containing the path separator character used by the runtime processor shell for separating paths from each other in the PATH
environmental variable.
Possible calling interfaces ⛓
impure
.
Example usage ⛓
ifort
compiler ⛓ ifort
compiler ⛓ gfortran
compiler ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Definition at line 4165 of file pm_sysPath.F90.