Xbasic
FILE.CLASS Function
Syntax
File_Class as C = file_pointer.Class()
Returns
- File_ClassCharacter
Returns the class of the file.
Description
The .CLASS() method returns the class of a file.
Example
dim fp as P fp = file.open("C:\Form_Methods.Txt", FILE_RO_EXCLUSIVE) ? fp.class() = "File"
See Also