码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2014-09-24 23:00:17      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   文件   sp   on   c   ad   

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 中拷贝文件到独立存储

标签:style   io   ar   for   文件   sp   on   c   ad   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!