int ReadFile(const char *filePath, char **content, int &nFileLen)
{
FILE *pF = NULL;
pF = fopen(filePath, "r");
if (pF == NULL) {
return -1;
}
fseek(pF, 0, SEEK_END); // 设置文件位置相对于文件末尾偏移0字节,即位置为文件末尾
nFileLen = ftell(pF); // 获取文件的当前位置,以字节为单位,应为当前位置已经处于文件末尾了,所有ftell的返回值就是文件的大小
rewind(pF); // 设置文件位置为文件开头
char *szBuffer = (char*)memalign(64, nFileLen);
if (!szBuffer)
{
fclose(pF);
return -1;
}
nFileLen = fread(szBuffer, sizeof(char), nFileLen, pF);
fclose(pF);
*content = szBuffer;
return 0;
}
原文:https://www.cnblogs.com/cristiano-duan/p/12178473.html