On Fri, Aug 11, 2006 at 05:27:10PM -0000, Peyman wrote: > Hi, > > I am looking for a standard C function to obtain last Time and Date of > a file update having file name and path. I think I can do this by > findfirst() function but is there any simpler way to do this ? > The function must be usable under 'gcc' (unix)
Findfirst will get you the files in a directory, but for the file statistics use stat() > By the way, I am new to 'gcc', how can we obtain the list of library > functions, their describtion and the usage example for each function in > this compiler (Some thing similar to MSDN help) there is a good index of c library functions available here: http://www.gnu.org/software/libc/manual/html_node/ MSDN is IMO not that great, getting information in 'man' is better, but I'm sure other peoples views will differ. Sun's Java documentation is by far the best I've seen. -- Regards, Ed :: http://www.ednevitable.co.uk proud linux hacker Chuck Norris likes to knit sweaters in his free time. And by "knit", I mean "kick", and by "sweaters", I mean "babies". To unsubscribe, send a blank message to <mailto:[EMAIL PROTECTED]>. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/c-prog/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
