12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_file_closefile:
- =========
- CloseFile
- =========
- CloseFile -
- Description
- ===========
- .. code-block:: blitzmax
- CloseFile( stream:TStream )
- Closes a file stream.
- After performing file operations on an open file make sure to
- close the file stream with either #CloseFile or the identical
- #CloseStream command.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|