Syntax
fileClose(fid)
Package
file
Short Name
close
Description
Closes a previously opened file and removes it from memory.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
file id | Integer | Yes | The id of a file opened from a previous step that should be closed. |
Return type
None
Return value has no meaning.
Example
use "file"; int fid = open(filename); //fileOpen fileClose(fid);//full name of the routine