|
-
Jun 19th, 2000, 03:12 AM
#1
Thread Starter
Member
how can i find all files on my harddrive of a certian type....im looking for somethign almost exactally like the find in windows
-
Jun 19th, 2000, 03:19 AM
#2
Use the FindFirstFile and FindNextFile API Calls.
-
Jun 28th, 2000, 10:38 PM
#3
I use FindFirstFile and FindNextFiles to get a list of files matching a pattern. But the files are in random order each time. I need to retrieve the files in the order of creation date (and name).
Is this possible using the above calls or is there is any other api call / function to achieve this?
-
Jun 29th, 2000, 12:17 AM
#4
Thread Starter
Member
you can have the find files add to a temporary invisible list box which would sort them by name. after you did this then you can For Next through the whole listbox and move the info to wherever you want it
-
Jun 29th, 2000, 12:22 AM
#5
Creation date would be the primary order of sorting.
Probably I need to keep track of that too!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|