MTA:Eir/FileSystem/copyStream

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.

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

Syntax

bool fsnamespace.copyStream( file src, file dst )

Arguments

  • src: source of the copy operation, starting from the seek pointer
  • dst: target of the copy operation, starting from the seek pointer

Returns

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

Example

-- TODO

FileSystem Namespace Functions

FileSystem File Functions