首页 > Windows开发 > 详细

Winphone 删除文件夹IsolatedStorageFile.DeleteDirectory

时间:2014-08-10 03:58:40      阅读:368      评论:0      收藏:0      [点我收藏+]
Winphone 没有直接删除文件夹的接口(因为文件夹不为空是删除不了的),所以要自己实现


public static void DeleteDirectoryRecursively(this IsolatedStorageFile storageFile, String dirName){
    String pattern = dirName + @"\*";
    String[] files = storageFile.GetFileNames(pattern);
    foreach (var fName in files)
    {
        storageFile.DeleteFile(Path.Combine(dirName, fName));
    }
    String[] dirs = storageFile.GetDirectoryNames(pattern);
    foreach (var dName in dirs)
    {
        DeleteDirectoryRecursively(storageFile, Path.Combine(dirName, dName));
    }
    storageFile.DeleteDirectory(dirName);}

http://stackoverflow.com/questions/18422331/easy-way-to-recursively-delete-directories-in-isolatedstorage-on-wp7-8


Winphone 删除文件夹IsolatedStorageFile.DeleteDirectory,布布扣,bubuko.com

Winphone 删除文件夹IsolatedStorageFile.DeleteDirectory

原文:http://fanxz.blog.51cto.com/4040922/1538023

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!