Home Texas Server Home Page

System.WriteFile

System.WriteFile will write to the contents of a file previously opened by System.CreateFile.
public System.ReadFile(
   OSHandle FileHandle,
   variable FileContents,
   Integer Position = TVariable.None
);

Parameters

FileHandle From previous call to System.CreateFile.
FileContents A buffer containing the contents to be written to the file.
Position Will write to the current file position if default parameter is passed.

Return Values

The error.errorCode value will be set to the underlining windows error message code and the error.errorMessage will have a detailed description of the error

Remarks

Example Use

variable fileHandle, fileBuffer = "Hello to the entire world!";
System.CreateFile("MyFile.txt",System.CREATE_ALWAYS:fileHandle);
System.WriteFile(fileHandle,fileBuffer);

Also See

System.CreateFile, System.ReadFile

Copyright © 2008, Ekky Software Pty Ltd.