ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / External file functions
  • Handling errors
  • Position in the file
  • Managing the ANSI/UNICODE format
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Writes a line to an external file. The characters required to go to the next line are automatically inserted at the end of the added line.
Syntax

Writing a line to an external file Hide the details

<Result> = fWriteLine(<File used> , <Line to write>)
<Result>: Boolean
  • True if the write operation was performed to the specified file,
  • False if an error occurs. To get more details on the error, use ErrorInfo with the errMessage constant.
<File used>: Integer or DiskFile variable
<Line to write>: Character string
Line to be written to the file (up to 2GB).
AndroidAndroid Widget

Writing a fixed-length line to an external file (speeds up the write operation) Hide the details

<Result> = fWriteLine(<File used> , <Address of line to write> , <Size to write>)
<Result>: Boolean
  • True if the write operation was performed to the specified file,
  • False if an error occurs. To get more details on the error, use ErrorInfo with the errMessage constant.
<File used>: Integer or DiskFile variable
<Address of line to write>: Address
Address of the line to be written to the file.
<Size to write>: Integer
Size in bytes (characters) of the line that must be written (up to 2GB).
This parameter must be less than or equal to the real size of the wine written to the external file. For example, if the size of the line to write is equal to 100 bytes, <Size to write> must be less than or equal to 100 bytes.
If this parameter is less than the real size of the written line, only the specified number of bytes will be written to the text file. The line will be truncated.
Remarks

Handling errors

fWriteLine throws an error in the following cases:
  • the file is not opened,
  • the file is not accessible in write mode,
  • the file is locked by another computer or by another application,
  • no disk space is available.
Caution: fWriteLine can only be used on text files. This function does not support the binary 0 (the write operation is stopped).

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.
fWriteLine writes the specified elements from the current position. Once fWriteLine has been executed, the current position is set to the last byte written.

Managing the ANSI/UNICODE format

fWriteLine is used to write:
  • a Unicode string in a Unicode file.
  • an Ansi string in an Ansi file.
The file is created or opened with fCreate/fOpen by specifying the file type.
Remarks:
  • The size to be written to a Unicode file must be multiplied by two compared to an ANSI file.
  • If an ANSI string is written to a UNICODE file and vice versa, the conversion will be implicitly performed.
    Format of the string passed as parameter
    External file
    in ANSI format
    (fOpen or fCreate associated with the foAnsi constant)
    External file
    in UNICODE format
    (fOpen or fCreate associated with the foUnicode constant)
    fWriteLine functionANSINo conversion is required before the write operationAutomatic conversion of the string before the write operation
    UNICODEAutomatic conversion of the string before the write operationNo conversion is required before the write operation
In WINDEV and WEBDEV projects, if the "Use ANSI strings at runtime" option is enabled in the project configuration description, the default opening mode is foAnsi (1st column).
In WINDEV and WEBDEV projects, if the "Use UNICODE strings at runtime" option is enabled in the project configuration description, the default opening mode is foUnicode (second column).
In the WINDEV Mobile projects, regardless of the version and mode, the opening mode used by default is foUnicode (second column).
For more details, see Managing UNICODE
Related Examples:
Handling text files Unit examples (WINDEV): Handling text files
[ + ] Handling "text" files with WINDEV:
- Create a text file
- Write into a text file
- Read in a text file
Handling text files Unit examples (WEBDEV): Handling text files
[ + ] This example explains how to handle "non HFSQL" files with WEBDEV and it allows you to:
- Create a text file
- Write into a text file
- Read in a text file
Handling text files Unit examples (WINDEV Mobile): Handling text files
[ + ] Handling external "text" files:
- Create a text file
- Write into a text file
- Read in a text file
The TableTo functions Unit examples (WINDEV): The TableTo functions
[ + ] Exporting table data with the WLanguage functions.
The following topics are presented in this example:
1/ interfacing with Word and Excel
2/ sending data to the clipboard
3/ generating a text file
This example explains how to export the content of a table to a Word document, an Excel workbook, the clipboard or a text file via the following WLanguage functions: TableToWord, TableToExcel, ToClipboard, TableToText.
Business / UI classification: Business Logic
Component: wd290std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/20/2023

Send a report | Local help