AllowsLongFilenames Property

Microsoft FrontPage Visual Basic

Returns True if the operating system on the machine where the Web site resides accepts long file names. Read-only Boolean.

expression.AllowsLongFilenames

expression    Required. An expression that returns a WebEx object.

Example

The following example checks whether the active Web site allows long file names. The example assumes the existence of a procedure named ConvertLongFilenames.

If ActiveWeb.AllowsLongFilenames = True Then
    Exit Sub
Else
    Call ConvertLongFilenames()
End If