LibreOfficeDev 7.4 Help
eWQDF‖Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle).
yY7ka‖If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number.
gBQEA‖See also: Open
AhrBC‖FileAttr (FileNumber As Integer, Attribute As Integer)
xonFX‖Integer
CGCBq‖ FileNumber: The number of the file that was opened with the Open statement.
voM6K‖ Attribute: Integer expression that indicates the type of file information that you want to return. The following values are possible:
nnGyB‖1: The FileAttr-Function indicates the access mode of the file.
EA4VX‖2: The FileAttr-Function returns the file access number of the operating system.
qCmCs‖If you specify a parameter attribute with a value of 1, the following return values apply:
SqXxC‖1 - INPUT (file open for input)
AUWCn‖2 - OUTPUT (file open for output)
iD4qe‖4 - RANDOM (file open for random access)
CB5Ed‖8 - APPEND (file open for appending)
8huJZ‖32 - BINARY (file open in binary mode).
Sub ExampleFileAttr
Dim iNumber As Integer
Dim sLine As String
Dim aFile As String
aFile = "C:\Users\ThisUser\data.txt"
iNumber = Freefile
Open aFile For Output As #iNumber
UwZsy‖ Print #iNumber, "This is a line of text"
CQBFr‖ MsgBox FileAttr(#iNumber, 1), 0, "Access mode"
AFiXo‖ MsgBox FileAttr(#iNumber, 2), 0, "File attribute"
Close #iNumber
End Sub