Função FileAttr

Devolve o modo de acesso ou o número de acesso ao ficheiro de um ficheiro aberto com a instrução Abrir. O número de acesso ao ficheiro depende do sistema operativo (OSH = Operating System Handle).

Ícone de nota

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


Consulte também: Open

Sintaxe:


  FileAttr (Channel As Integer, Attributes As Integer)

Valor de retorno:

Número inteiro

Parâmetros:

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.

Se especificar um atributo de parâmetro com o valor 1, aplicam-se os seguintes valores de retorno:

1 - ENTRADA (abrir ficheiro para entrada)

2 - SAÍDA (abrir ficheiro para saída)

4 - ALEATÓRIO (abrir ficheiro para acesso aleatório)

8 - ANEXAR (abrir ficheiro para anexar)

32 - BINÁRIO (abrir ficheiro no modo binário).

Códigos de erro

5 Chamada de procedimento inválido

52 Erro no nome ou número do ficheiro

Exemplo:


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, "Esta é uma linha do texto"
    MsgBox FileAttr(#iNumber, 1), 0, "Access mode"
    MsgBox FileAttr(#iNumber, 2), 0, "File attribute"
    Close #iNumber
End Sub

Necessitamos da sua ajuda!