Answered in another question of mine.
|
C can certainly do it - the To iterate over a directory, you can use the As far as getting the filename, you can just take it as a command line parameter by defining main as:
Command line parameters will begin at |
|||
|
|
|
To read a list of files in a directory look at opendir, readdir, closedir for Linux use stat to get the length of the file. These are of Linux For winodws see http://msdn.microsoft.com/en-gb/library/windows/desktop/aa365200%28v=vs.85%29.asp and the link http://blog.kowalczyk.info/article/8f/Get-file-size-under-windows.html will show you how to do this. |
|||
|
|
|
See Simple example from a : SO Post
} Also You can use the fstat() system call which can fill in the |
|||||||||
|
|
To get the list of files in a directory look for "libc opendir". To get the size of a file without opening it you can use fstat. |
|||
|
|
|
This seems strangely similar to another question I saw recently. Anyway, here's my strangely similar answer (for Linux, not sure how it'll fare on Windows 7):
|
|||
|
|
|
There are little things need to be taken care for the given examples (under Linux or other UNIX).
|
|||
|
|
fp = fopen( name, mode ); if( fp == NULL ) { perror( name ); }– William Pursell Jan 28 at 21:19