Enable JavaScript in the browser to display LibreOfficeDev Help pages.

FileAttr Function

Vraća pristupni mod ili pristupni broj datoteci od datoteke koja je otvorena sa iyrayom Open. Pristupni broj datoteci je broj koji je zavisi od operativnog sustava (OSH = Operating System Handle)

Note Icon

If you use a 32-Bit operating system, you cannot use the FileAttr function to determine the file access number.


See also: Open

Syntax:


  FileAttr (Channel As Integer, Attributes As Integer)

Return value:

Cijeli broj

Parameters:

Channel: The number of the file that was opened with the Open statement.

Attributes: Integer expression that indicates the type of file information that you want to return. The following values are possible:

1: FileAttr indicates the access mode of the file.

2: FileAttr returns the file access number of the operating system.

If you specify a parameter attribute with a value of 1, the following return values apply:

1 - ULAZ (datoteka je otvorena za čitanje)

2 - IZLAZ (datoteka je otvorena za pisanje)

4 - SLUČAJNO (datoteka je otvorena za slučajan pristup)

8 - DODAVANJE (datoteka je otvorena za dodavanje)

32 - BINARNO (datoteka je otvorena kao binarna)

Error codes:

5 Invalid procedure call

52 Invalid file name or file number

Example:


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
    Print #iNumber, "This is a line of text"
    MsgBox FileAttr(#iNumber, 1), 0, "Access mode"
    MsgBox FileAttr(#iNumber, 2), 0, "File attribute"
    Close #iNumber
End Sub