int FileSize( int handle)
函数返回文件大小字节。获得详细的错误信息,查看GetLastError() 函数。
参数:
handle - 用 FileOpen()函数返回的句柄。
示例:
- int handle;
- int size;
- handle=FileOpen("my_table.dat", FILE_BIN|FILE_READ);
- if(handle>0)
- {
- size=FileSize(handle);
- Print("my_table.dat 大小为 ", 大小 " bytes");
- FileClose(handle);
- }
复制代码
|