What would be the best way to do this in the C programming language?
find fileName
|
Look up the POSIX function There's a related but not immediately as useful function |
|||
|
|
You could call
|
||||
|
|
|
That's a complex topic. Have a look at the GNU libc documentation. Then try to scan the current directory using scandir. If that works, you can implement a recursive version, assuming you are talking about the UNIX find command and want to do recursive search for file names. |
|||
|
|
findsource code? – shellter Aug 14 '11 at 16:08