Function CSPFile::Close()
Description:
Closes the opened or created file.
 |
Prototype:
void Close();
Arguments:
No arguments (void).
Return value:
No return value (void).
Examples:
CSPFile f; f.Open( "C:\\somedir\\test.txt", CSPFile::FILE_READ || CSPFile::FILE_WRITE ); ... ... f.Close();
See also:
member functions Open(), Create()
|
|