Jonas Pegerfalk
Jonas Pegerfalk

Reputation: 9206

API to list files on a Windows Mobile device

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

Answers (1)

kgiannakakis
kgiannakakis

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

Related Questions