Previous Topic: Is_U_W - Check the File for the 'User Write' AttributeNext Topic: MkDir - File System Function


Is_U_X - Check the File for the 'User Execute' Attribute

Valid on UNIX only

The Is_U_X function checks the file for the specified attribute USER eXecute.

Function format:

Is_U_X(filename as String) as Boolean
filename

Identifies a file path.

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

Example:

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