FutureBasic Logo

<<    Index    >> FutureBasic

open   statement



Syntax
open "method", fileID, url, recLen

Description
This statement opens a file so that you can read from it and/or write to it. If you specify a method other than "I", the open statement also creates the file if it doesn't already exist.

     Special Note:Starting in FB 5.7.99, all FB I/O verbs were updated to 64-bit and the Carbon toolbox calls removed/replaced.
     A replacement method for managing in use open files and notifying OPEN "N" users relies on POSIX "advisory locking".
     This seems to work reliably for direct-attached local storage but it does _not_ work for server files.
     Users with server files should investigate other file open methods and review the FB list thread in September/October 2017 titled "File Bug in 5.7.105"

The parameters are interpreted as follows:

 method
Specify one of the following letters:

IOpen for input (reading) only. The file must already exist. Other processes may read from the file (but not write to it) while it's open with this method.
OOpen for output (writing) only. If the file already exists, all of its current contents will be destroyed. You have exclusive access to the file (no other process can read from it nor write to it) while it's open with the "O" method. Does NOT support the "resource fork" open.
ROpen for "random access." You can either read from or write to the file. The "file mark" (which indicates where the next read or write operation will occur) is placed initially at the beginning of the file. If you write to the file, you only replace those bytes which you're writing; the rest of the file's contents are unaffected. You have exclusive access to the file.
AOpen for "append." This is just like method "R", except the file mark is placed initially at the end of the file. This method is normally used when you want to add data to the end of an existing file.
NOpen for non-exclusive random access. This is just like method "R", except that other processes may read from the file while you have it open. Your process is the only one allowed to write to the file and your code is responsible for assuring file readers don't process old or partial data. OPEN code only provides access; it does not provide any data integrity protection when there are concurrent readers and writers of the same file. If a file is already open in "N" mode, a second attempt to open in 'N' mode by the current or other process automatically provides read-only access ( essentially "I" mode ) to the file. If the process is given read-only mode, the FB runtime sends a "Permission denied" ( _EAccess/13 ) error code which can used by the caller ( must be trapped with 'on error' and "error" ). If a process is completely denied access ( such as when another app has the file open in some exclusive mode ), the error handling will report a _EAgain/35 error.

 fileID
Specify a number in the range 1 through 255 which is not being used by any other currently open file. You can use this number to identify the open file in statements and functions such as read#, write, eof, lof, etc. The fileID number is associated with the file until you close the file.

 url
A CFURLRef. Examples:
open "I", 1, url
open "O", 3, url
open "I", 2, url
open "A", 5, url
open "R", 2, url
open "I", 2, url

 recLen
This value indicates the length of the records in the file; naturally, it's most useful when the file consists of fixed-length records. The value you specify is used when you execute statement and functions such as record, rec, loc and lof. If you omit this parameter, a default value of 256 is used. If the file doesn't consist of fixed-length records, it's often most convenient to set recLen to 1.

See also
close; input#; print#; read#; read file; write; write file; record; rec; loc; lof; eof