首页 > Windows开发 > 详细

Windows Phone 7 中拷贝文件到独立存储

时间:2014-09-24 21:34:48      阅读:414      评论:0      收藏:0      [点我收藏+]

private void CopyToIsolatedStorage()
{
    using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())
    {
        string[] files = new string[] { "下雨天.mp3", "用心听.mp3", "我们的歌.mp3" };

        foreach (var _fileName in files)
        {
            if (!storage.FileExists(_fileName))
           {
               string _filePath = "Audio/" + _fileName;
               StreamResourceInfo resource = Application.GetResourceStream(new Uri(_filePath, UriKind.Relative));

                  using (IsolatedStorageFileStream file = storage.CreateFile(_fileName))
                 {
                          int chunkSize = 4096;
                        byte[] bytes = new byte[chunkSize];
                      int byteCount;

                     while ((byteCount = resource.Stream.Read(bytes, 0, chunkSize)) > 0)
                     {
                          file.Write(bytes, 0, byteCount);
                     }
                 }
           }
       }
    }
}

 

Windows Phone 7 中拷贝文件到独立存储

原文:http://www.cnblogs.com/qiuyueguangxuan/p/3991520.html

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