Returning the pathname of current working directoryΒΆ
cwd() |
Return pathname of current working directory |
SYNTAX
cwd(numeric_expression)
Returns the full pathname of the current working directory.
numeric_expression |
The valid values for numeric_expression are 0 and 1.
|
EXAMPLE
!temp WorkDir,,a100
+textbox DirBox at 160,29 {
field = tmp.WorkDir
label = "Directory "
}
....
tmp.WorkDir = cwd(0)
display DirBox
RELATED TOPICS |