zoukankan      html  css  js  c++  java
  • Windows Phone 7 中拷贝文件到独立存储

    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);
                         }
                     }
               }
           }
        }
    }

  • 相关阅读:
    js实现全选反选功能
    seajs笔记
    延迟加载图片
    JavaScript 数组基本操作
    图片上传,头像上传
    命令模式
    动态加载js css 插件
    发布-订阅模式
    js 切换全屏
    JavaScript 经典之一 闭包
  • 原文地址:https://www.cnblogs.com/qiuyueguangxuan/p/3991520.html
Copyright © 2011-2022 走看看