跳到主要内容

ReadFile 读取文件

🎯功能

向目标文件读出文本内容

📜语法

结果 = Plugin.File.ReadFile(文件句柄, 读取长度)

📥参数

参数数据类型解释
文件句柄长整型数要操作的文件句柄, 也就是file.openfile的返回值
读取长度长整型数要读取的内容长度, 单位字节

📤返回

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

💡示例

path = "按键精灵动起来教程1.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

📘备注