Windows Phone获得IsolatedStorage中指定目录下的所有文件

时间:2014-05-15 22:25:36   收藏:0   阅读:416

在Windows Phone 中对隔离存储空间中的文件操作需要通过System.Io.IsolatedStorage下的类进行操作

获得指定文件夹下的所有文件:

参数:是指定文件夹的路径加上通配符,格式:\folder1\*

bubuko.com,布布扣
        List<string> GetFileNames(string _strFolder)
        {
            List<string> returnlst = new List<string>();
            using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())
            {
                returnlst.AddRange(storage.GetFileNames(_strFolder));
            }
            return returnlst;
        }
View Code

bubuko.com,布布扣

 如果想获得指定类型的,需要把文件后面的“ * ”换成指定格式的“ *.png ”,就可以获得指定文件夹下的所有png文件了

 

Windows Phone获得IsolatedStorage中指定目录下的所有文件,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!