WriteData()

Syntax

WriteData(*MemoryBuffer, LengthToWrite)
Description
Write the content of the specified memory buffer in current file.
  *MemoryID = AllocateMemory(1000)   ; allocating a memory block 
  If *MemoryID
    PokeS(*MemoryID, "Store this string in the memory area")   ; we write a string into the memory block
  EndIf
  If CreateFile(0,"Text.txt")        ; we create a new text file...
    WriteData(PeekS(*MemoryID),10)   ; write the first 10 chars from the memory block into the file
    CloseFile(0)                     ; close the previously opened file and so store the written data 
  Else
    Debug "Can't create the file!"
  EndIf

Supported OS

All

<- WriteByte() - File Index - WriteFloat() ->