Windows Phone获得IsolatedStorage中指定目录下的所有文件
2020-11-27 08:40
标签:style blog class code c tar 在Windows Phone
中对隔离存储空间中的文件操作需要通过System.Io.IsolatedStorage下的类进行操作 获得指定文件夹下的所有文件: 参数:是指定文件夹的路径加上通配符,格式:\folder1\* 如果想获得指定类型的,需要把文件后面的“ * ”换成指定格式的“ *.png ”,就可以获得指定文件夹下的所有png文件了 Windows Phone获得IsolatedStorage中指定目录下的所有文件,搜素材,soscw.com Windows Phone获得IsolatedStorage中指定目录下的所有文件 标签:style blog class code c tar 原文地址:http://www.cnblogs.com/techMichaelLee/p/3730656.html Liststring> GetFileNames(string _strFolder)
{
Liststring> returnlst = new Liststring>();
using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())
{
returnlst.AddRange(storage.GetFileNames(_strFolder));
}
return returnlst;
}
文章标题:Windows Phone获得IsolatedStorage中指定目录下的所有文件
文章链接:http://soscw.com/index.php/essay/22862.html