double FileReadNumber( int handle)
从当前文件位置在符号之前读取数字。只能为CSV 文件。
获得详细的错误信息, 查看 GetLastError()函数。
参数:
handle - 用 FileOpen()函数返回的句柄。
示例:
- int handle;
- int value;
- handle=FileOpen("filename.csv", FILE_CSV, ';');
- if(handle>0)
- {
- value=FileReadNumber(handle);
- FileClose(handle);
- }
复制代码
|