IsExecutable Property
Returns or sets a Boolean that represents the setting for execute permission for a WebFolder object.
expression.IsExecutable
expression Required. An expression that returns one of the objects in the Applies To list.
Example
This example retrieves the setting of the IsExecutable property for a WebFolder object.
Private Sub CheckExecutable()
Dim myFolder As WebFolder
Dim myExeStatus As Boolean
Set myFolder = ActiveWeb.RootFolder.Folders("images")
myExeStatus = myFolder.IsExecutable
End Sub