当前位置:编程学习 > C/C++ >>

获取文件大小代码(C语言)

long MyGetFileSize( const char* pFile )
{
        struct _stat buf;
        int result;
        result = _stat( pFile, &buf );
        if( result != 0 )
        {
                return -1;
         } else {
                return buf.st_size;
         }
}
补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,