File.SaveFile |
Top Previous Next |
Syntax function File.SaveFile(Filename: string; Value: variant): boolean
Description Saves a Value to the file Filename as a binary value, this routine overwrites any existing files.
If you want to read or write binary files or want to control what you're loading and saving, use file-stream function File.Open and its related functions. See also
Example execute udsblock as begin myval = 65536; File.SaveFile('c:\data\mydata.bin', myval); end |