func_streams_copystream.rst 506 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .. _func_streams_copystream:
  2. ==========
  3. CopyStream
  4. ==========
  5. CopyStream -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. CopyStream( fromStream:TStream,toStream:TStream,bufSize=4096 )
  10. Copy stream contents to another stream
  11. #CopyStream copies bytes from @fromStream to @toStream Until @fromStream reaches end
  12. of file.
  13. A #TStreamWriteException is thrown if not all bytes could be written.
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. Nothing.
  19. Examples
  20. ========
  21. See Also
  22. ========