hi again!
Can someone tell me how to find all the files in a folder, including the files in the sub-folders.
THX
Professional Software Development Tools
hi again!
Can someone tell me how to find all the files in a folder, including the files in the sub-folders.
THX
Search for *.*, which means all files...
The command should look like:
result = File.Find("C:\\YourDir\\", "*.*", true, true, nil);
Its important to set recurse to true.
my poor English.
I used to think recurse is of no use.
Thanks a lot.