Arduino – SD库 – seek

点击返回Arduino-SD库页面

seek

描述

在文件中寻找新位置,该位置必须在0到文件的大小(含最大)之间。

语法

file.seek(pos)

参数

file:File实例化对象(由SD.open()返回)

pos: 查找的位置 (unsigned long)

返回值

返回值类型:bool
操作成功则返回true,操作失败则返回false

示例程序

 

 

效果演示

本程序将从第十个字节的位置开始读取数据,因此前面的数据将不会被打印,也可参考 SD-position() 函数内容

arduino-sd-seek-效果演示 Arduino SD卡读写模块 太极创客
arduino-sd-seek-效果演示