- Handling errors
- Position in the file
- Managing the ANSI/UNICODE format
fReadLine (Function) In french: fLitLigne Reads a line in an external file.
New in version 28 Syntax
<Result> = fReadLine(<File used> [, <Separator>])
<Result>: Character string or UNICODE character string - Line read in an external file.
- EOT constant if the end of file has been reached.
- Empty string ("") if an error occurred. In this case, the ErrorOccurred variable is set to True.
Remark: A line ends with a CR character (Carriage Return).
<File used>: Integer or DiskFile variable <Separator>: Character string Separator used between the lines. The default separator is the Carriage Return (CR). New in version 28 Remarks Handling errors fReadLine throws an error in the following cases: - the file is not opened,
- the file is not accessible in read mode,
- the file is locked by another computer or by another application. fUnlock is used to unlock an external file.
Position in the file When opening a file, the current position corresponds to: - the first file byte (by default),
- the last byte of the file is the file is opened in "addition" mode (foAdd constant).
This position can be modified by fSeek. fReadLine reads the specified elements from the current position. Once fReadLine has been executed, the current position is set to the last byte read. fReadLine returns the EOT constant if the end of the file has been reached. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|