Share via


PathSeparator Property

PathSeparator Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Returns the character used to separate folder names. This property returns a backslash (\). Read-only String.

expression.PathSeparator

expression   Required. An expression that returns an Application object.

Remarks

You can use PathSeparator property to build Web addresses even though they contain forward slashes (/).

The FullName property returns the path and file name as a single string.

Example

This example displays the path and file name of the active document.

  MsgBox ActiveDocument.Path & Application.PathSeparator & _
    ActiveDocument.Name

If the first add-in is a template, this example unloads the template and opens it.

  If Addins(1).Compiled = False Then
    Addins(1).Installed = False
    Documents.Open FileName:=AddIns(1).Path _
        & Application.PathSeparator _
        & AddIns(1).Name
End If