ReadLine 读取一行

文章目录
  1. 1. 功能
  2. 2. 语法
  3. 3. 参数
  4. 4. 返回值
  5. 5. 示例
  6. 6. 备注

功能

从文件当前的读写位置读一行内容

语法

结果 = Plugin.File.ReadLine(文件句柄)

参数

参数 数据类型 解释
文件句柄 长整数型 要操作的文件句柄, 也就是OpenFile 打开文件的返回值

返回值

字符串, 返回读取到的内容

示例

1
2
3
4
5
6
7
path = "C:\紫猫学院.txt" 
fileHandle=Plugin.File.OpenFile(path)
file20byte=Plugin.File.ReadFile(fileHandle, 20)
fileline=Plugin.File.ReadLine(fileHandle)
Call Plugin.File.CloseFile(fileHandle)
MessageBox "读取" & path & "文件20个长度内容是:" & file20byte
MessageBox "读取" & path & "文件一行长度内容是:" & fileline

备注