- 论坛徽章:
- 0
|
回复 #5 Henk2009 的帖子
- #define __USE_LARGEFILE64
- #define _LARGEFILE_SOURCE
- #define _LARGEFILE64_SOURCE
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <stdio.h>
- #include <stdlib.h>
- int get_file_size( const char *filename )
- {
- struct stat64 buf;
- if( stat64( filename, &buf ) < 0 ) {
- return 0;
- }
- return buf.st_size;
- }
- int main( int argc, char *argv[] )
- {
- if( argc < 2 ) {
- printf( "Usage: ./filesize filename\n" );
- exit( 1 );
- }
- printf( "Filesize is %d bytes\n", get_file_size( argv[1] ) );
- return 0;
- }
复制代码
这个可以,直接cc就行了 |
|