Basic.PathSeparator$ (property)

Syntax

Basic.PathSeparator$

Description

Returns a String containing the path separator appropriate for the current platform.

Comments

The returned string is any one of the following characters: / (slash), \ (back slash), : (colon)

Example

Sub Main()

  MsgBox "The path separator for this platform is: " & Basic.PathSeparator$
End Sub

See Also

Basic.Eoln$ (property)

More information

B