应用程序启动后,我试图恢复后台下载,但始终会在.GetCurrentDownloadsAsync()中导致找不到文件异常

        IReadOnlyList<DownloadOperation> downloads = null;
        try
        {
            downloads = await BackgroundDownloader.GetCurrentDownloadsAsync();
            if (downloads.Count <= 0)
                return;

            foreach (DownloadOperation op in downloads)
            {

                op.Resume();

            }
        }
        catch(Exception ex)
        {

            System.Diagnostics.Debug.WriteLine(ex.Message);
        }

最佳答案

我记得前一段时间读过类似的错误。通过卸载该应用程序,然后从Visual Studio重新运行该应用程序,可以修复该问题。

关于c# - 在后台下载器中找不到文件异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20311049/

10-13 09:06