anyone has an idea how to?
why is it so difficult? is there any easy way like FileInfo in C#?
boreas
2010-06-07 14:39:02
If you just want to list the files FindFirstFile()/FindNextFile() should be easier.If you want to "listen" for changes, then FindFirstChangeNotification() is the way to go.
Vagaus
2010-06-07 14:44:31
thank you! exactly what i need.
boreas
2010-06-07 20:25:58
+1
A:
I suggest FindFirstFile() and FindNextFile().
Docs with nice example - http://msdn.microsoft.com/en-us/library/aa364418%28VS.85%29.aspx
James Roth
2010-06-07 14:36:49