System::WriteFile
System::WriteFile will write to the contents of a file previously opened by System::CreateFile.
public System::WriteFile(
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.errorString will have a detailed description of the error
Remarks
Example Use
variable fileHandle, fileBuffer = "Hello to the entire world!";
System::CreateFile(L"MyFile.txt",System::CREATE_ALWAYS:fileHandle);
System::WriteFile(fileHandle,fileBuffer);
Requirements
Also See
System::CreateFile, System::ReadFile
Copyright © 2008-2009, Ekky Software Pty Ltd.