PathSeparator Property
Applies To
Application object.
Description
Returns the character used to separate folder names. In Windows, this property returns a backslash (\); on the Macintosh, this property returns a colon (:).
Note The FullName property returns the path and file name as a single string.
See Also
FullName property, Name property, Path property.
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