二进制文件读写函数

63 篇文章 0 订阅
47 篇文章 1 订阅
本文介绍两个用于操作二进制文件的函数:abanFRead用于从指定位置读取固定数量的数据到缓存区;abanFWrite则将缓存区的数据写入到指定位置。这些函数通过提供文件名、起始元素位置、读写数量等参数实现精确的数据读写。
摘要由CSDN通过智能技术生成


/*
 * dstBuf      : Storage location for data.
 * size        : Item size in bytes.
 * startEle    : Which is the start element to read. (counts from 0)
 * count       : Maximum number of items to be read.
 * fileName    : Name of the file to be read.
 */
int abanFRead(void *dstBuf, size_t size, long startEle, size_t count, char *fileName)
{
  FILE *file = fopen(fileName, "rb");
  fseek(file, startEle*size, SEEK_SET);
  fread(dstBuf, size, count, file);
  fclose(file);
  return 0;
}

/*
 * srcBuf      : Pointer to data to be written.
 * size        : Item size in bytes.
 * startEle    : Which is the start element position to be written. (starts from 0)
 * count       : Maximum number of items to be written.
 * fileName    : Name of the file to be read.
 */
int abanFWrite(const void *srcBuf, size_t size, long startEle, size_t count, char *fileName)
{
  FILE *file = fopen(fileName, "wb");
  fseek(file, startEle*size, SEEK_SET);
  fwrite(srcBuf, size, count, file);
  fclose(file);
  return 0;
}

这两个函数能够用来读写二进制数据。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值