Previous Topic: Is_G_W - Check the File for the 'Group Write' AttributeNext Topic: Is_Hidden - Check the File for the 'Hidden' Attribute


Is_G_X - Check the File for the 'Group Execute' Attribute

Valid on UNIX only

The Is_G_X function checks the file for the specified attribute Group Execute.

Function format:

Is_G_X(filename as String) as Boolean
name

Identifies a file path.

This function returns TRUE if the attribute is set and FALSE otherwise.

Example:

If Is_G_X(Argv(1)) Then
	print(Argv(1) + " indicates 'G_X'.")
Else
	print(Argv(1) + " does not indicate 'G_X'.")
End If

More information:

UNIX File Attributes