2016年7月19日 星期二

[C] Get file size

int FileSize(FILE *fp)
{
    int prev=ftell(fp);

    fseek(fp, 0L, SEEK_END);
    int size=ftell(fp);
    fseek(fp,prev,SEEK_SET);
    return size;
}

0 意見:

張貼留言