VB6Runtime / Library / File / open

VB6 Library Reference

VB6 Open statement syntax: - Open pathname For mode [Access access] [lock] As [#]filenumber [Len=reclength] Enables input/output (I/O) to a file. The Open statement syntax has these parts:

Part Description
pathname Required. String expression that specifies a file name — may include directory or folder, and drive.
mode Required. Keyword specifying the file mode: Append, Binary, Input, Output, or Random. If unspecified, the file is opened for Random access.
access Optional. Keyword specifying the operations permitted on the open file: Read, Write, or Read Write.
lock Optional. Keyword specifying the operations restricted on the open file by other processes: Shared, Lock Read, Lock Write, and Lock Read Write.
filenumber Required. A valid file number in the range 1 to 511, inclusive. Use the FreeFile function to obtain the next available file number.
reclength Optional. Number less than or equal to 32,767 (bytes). For files opened for random access, this value is the record length. For sequential files, this value is the number of characters buffered.

Remarks

Examples

' Open for input
Open "TESTFILE" For Input As #1
' Open for output
Open "TESTFILE" For Output As #1
' Open for append
Open "TESTFILE" For Append As #1
' Open for binary
Open "TESTFILE" For Binary As #1
' Open for random with record length
Open "TESTFILE" For Random As #1 Len = 512
' Open with access control
Open "TESTFILE" For Input Access Read As #1
' Open with locking
Open "TESTFILE" For Binary Lock Read Write As #1
' Open with variable
Dim fileNum As Integer
fileNum = FreeFile
Open fileName For Input As fileNum

Reference

← Back to File | View all functions