我是 Windows 新手。我有一个小问题,即我想在应用程序启动时第一次下载一个文件夹。文件下载后我想移动到主页。
StorageFile localFile = await destinationFolder.CreateFileAsync(localFileName, CreationCollisionOption.ReplaceExisting);
BackgroundDownloader downloader = new BackgroundDownloader();
DownloadOperation download = downloader.CreateDownload(m_source, localFile);
我已在主页中使用此代码进行下载。