string FileReadString( int handle, void length)
函数从当前文件位置读取字串符。适用于CSV 和二进制文件。在文本文件中字串符在符号之前被读取。对于二进制文件, 被测量的计数将读取字串符。获得详细的错误信息, 查看GetLastError()函数。
参数:
handle - 用FileOpen()返回的句柄。
length - 读取字符串长度 。
示例:
- int handle;
- string str;
- handle=FileOpen("filename.csv", FILE_CSV|FILE_READ);
- if(handle>0)
- {
- str=FileReadString(handle);
- FileClose(handle);
- }
复制代码
|