Windows Phone获取独立存储空间指定目录下的指定文件_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Windows Phone获取独立存储空间指定目录下的指定文件

Windows Phone获取独立存储空间指定目录下的指定文件

 2014/12/14 21:02:40  wzwyc  程序员俱乐部  我要评论(0)
  • 摘要:using(IsolatedStorageFilemyStore=IsolatedStorageFile.GetUserStoreForApplication()){string[]files=myStore.GetFileNames("myDirName\\*.txt");}
  • 标签:Windows 目录 文件
using (IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication())
{
    string[] files = myStore.GetFileNames("myDirName\\*.txt");
}
发表评论
用户名: 匿名