|
GetCurrentDir
string
GetCurrentDir()
Return
Value
Returns the current working
directory.
Parameters
N/A
Remarks
Call this
function to get the current working directory.
Package
Plug in module:
nd_fileplg.npl
Example
The following
example demonstrates the use of GetCurrentDir.
# Example for GetCurrentDir
string dir
=
GetCurrentDir()
Println("Current
directory is ",
dir)
Output of the example script will look
like:
Current
directory is C:\NetDecision\bin
|