Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Adds a backslash (if needed) to a path expression.
ADDBS(cPath)
Return Value
Character
Parameters
- cPath
Specifies the path name to which to add the backslash.
Example
The following code displays a directory path and demonstrates that the ADDBS( ) function adds a backslash if one does not exist, but does not duplicate if one does exist.
*-- Both print C:\Windows\
? ADDBS( "C:\Windows" )
? ADDBS( "C:\Windows\" )