int FileSize(int handle)
The function returns file size in bytes. To get the detailed error information, one has to call the GetLastError() function.
この関数は、ファイルの大きさをバイトで返します。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
| 1 2 | <b>handle</b>   -   File handle returned by the FileOpen() function.               FileOpen() 関数によって返されたファイル ハンドル。 | 
Sample:
サンプル:
| 1 2 3 4 5 6 7 8 9 |   int handle;   int size;   handle=FileOpen("my_table.dat", FILE_BIN|FILE_READ);   if(handle>0)     {      size=FileSize(handle);      Print("my_table.dat size is ", size, " bytes");      FileClose(handle);     } |