In the regular .NET Framework, there are a number of methods for retrieving a subset of files in a directory based on a search pattern, for example DirectoryInfo.GetFiles(string searchPattern).
Is there a corresponding method for Windows Store applications? .NET for Windows Store apps does not contain the Directory
or DirectoryInfo
classes, and neither of the StorageFolder.GetFilesAsync overloads in the Windows API support search patterns.