我想列出我手机上的所有文件。
我的解决方案中有两个文件。一份数据库文件和一份pdf文件。
使用此代码,我只能列出数据库文件。如何使用独立存储列出 PDF 文件?
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
string searchPattern = "\\" + "*";
string[] fileNames = store.GetFileNames(searchPattern);
}