Reputation: 9206
I'm writing an Windows Mobile application and I'd like to get a list of files in a certain folder on the device. Is there an API to use to read information about folders and files in the device file system?
Upvotes: 0
Views: 758
Reputation: 104158
That will be just like a desktop application would do it. For .NET have a look at DirectoryInfo and similar classes.
For C++ start from FindFirstFile
Upvotes: 2