void FileClose(int handle)
Closes file previously opened by the FileOpen() function.
FileOpen() 関数によって開けられたファイルを閉じます。
Parameters:
パラメータ:
1 2 | <b>handle</b> - File handle returned by the FileOpen() function FileOpen() 関数によって返されたファイル ハンドル。 |
Sample:
サンプル:
1 2 3 4 5 6 | int handle=FileOpen("filename", FILE_CSV|FILE_READ); if(handle>0) { // working with file ... FileClose(handle); } |