|
|
|
|
|
fAddText (Function) In french: fAjouteTexte Adds the content of a character string at the end of a file. IF fAddText("C:\test\MonFichier.txt", "Chaîne ajoutée en fin de fichier")
Info("Ajout réussi")
END
Syntax
<Result> = fAddText(<File name> , <String to add>)
<Result>: Boolean - True if the addition was performed,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<File name>: Character string File to be used (up to 260 characters). This parameter can correspond to: - a file name. This file will be automatically searched in the current directory (returned by fCurrentDir).
- a file name with its full or relative path. A UNC path can be used.
Caution: This file is modified by function fAddText. The file is automatically created if it does not exist. <String to add>: Character string Text that must be added to the file.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|