FileAttr Function

Open ステートメントでオープンしたファイルのファイルアクセス番号ないしアクセスモードを返します。ファイルアクセス番号は、オペレーティングシステムに依存します (OSH = Operating System Handle)。

注マーク

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


次も参照してください:Open

Syntax:


  FileAttr (Channel As Integer, Attributes As Integer)

Return value:

整数

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.

属性パラメーターに 1 を指定した場合は、下記の戻り値が返されます。

1 - INPUT (入力用にファイルをオープン)

2 - OUTPUT (出力用にファイルをオープン)

4 - RANDOM (ランダムアクセス用にファイルをオープン)

8 - APPEND (順編成用にファイルをオープン)

32 - BINARY (バイナリモードでファイルをオープン)

Error codes:

5 無効なプロシージャー呼び出しです

52 ファイル名または番号が不正です

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

ご支援をお願いします!