【发布时间】:2016-05-13 19:49:20
【问题描述】:
我是 windows 新手。我有一个小问题,即我想在应用程序启动时第一次下载一个文件夹。文件下载后我想移动到主页。
StorageFile localFile = await destinationFolder.CreateFileAsync(localFileName, CreationCollisionOption.ReplaceExisting);
BackgroundDownloader downloader = new BackgroundDownloader();
DownloadOperation download = downloader.CreateDownload(m_source, localFile);
我已在主页中使用此代码进行下载。
【问题讨论】:
标签: c# windows windows-phone-8.1 windows-store-apps windows-phone-store