|
|
|
|
|
- Operating mode in Windows Vista (and later)
fSaveBuffer (Function) In french: fSauveBuffer Creates and fills an external file with the content of a string or buffer variable. If the file already exists, it is deleted and re-created. Remarks: - The strings containing binary "0" ("\0") are supported.
- the created file is always in ANSI format.
- The buffer variable is filled by fLoadBuffer.
MyBuffer is Buffer
...
fSaveBuffer("c:\tmp\MyFile.raw", MyBuffer)
Syntax
<Result> = fSaveBuffer(<File to create> , <Content>)
<Result>: Boolean - True if the operation was successful,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<File to create>: Character string Name and full (or relative) path of the file to create. A UNC path can be used. The file extension determines the type of file to create. <Content>: Buffer variable or Character String variable Name of the Buffer or Character String variable that constitutes the content of the file.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|