Previous Topic: Is_U_R - Check the File for the 'User Read' AttributeNext Topic: Is_U_X - Check the File for the 'User Execute' Attribute


Is_U_W - Check the File for the 'User Write' Attribute

Valid on NetWare, Symbian OS, UNIX, Windows and Windows CE

The Is_U_W function checks the file for the specified attribute USER WRITE.

Function format:

Is_U_W(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_W(Argv(1)) Then
	print(Argv(1) + " indicates 'U_W'.")
Else
	print(Argv(1) + " does not indicate 'U_W'.")
End If