Modules/FileSystem/copyStreamCount

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. The copy is only performed up to a specified count of bytes.

Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed.

Syntax

bool fsnamespace.copyStreamCount( file src, file dst, int count )

Arguments

  • src: source of the copy operation, starting from the seek pointer
  • dst: target of the copy operation, starting from the seek pointer
  • count: the amount of bytes to copy (has to be above 0)

Returns

This function returns true if the copy operation has completed successfully, false otherwise.

Example

-- TODO

FileSystem Namespace Functions

FileSystem File Functions