我正在尝试使用以下方法(在应用程序运行时)将文件保存到应用程序存储中:
首先,我从URI创建文件:
StorageFile file = await StorageFile.CreateStreamedFileFromUriAsync(name, uri, RandomAccessStreamReference.CreateFromUri(uri));
然后,我将文件复制到应用程序的存储中,以便以后使用:
StorageFile file2 = await file.CopyAsync(ApplicationData.Current.LocalFolder, name, NameCollisionOption.ReplaceExisting);
但是第二种方法CopyAsync()没有完成,然后在等待〜5分钟后随机失败,并显示此错误:
.
此外,每次我调用CopyAsync()方法时,都会在应用程序的生命周期中添加进程:
.
当我单击进程之一时,CopyAsync()方法结束.
要解决此问题,我必须重新启动手机并卸载/安装该应用程序.
注意:当我在后台任务中尝试此操作时,此方法会100%失败.
解决方法:
多亏了this post,我才得以解决此问题
代码也可以在后台任务中工作:)
这不能解释为什么FileStorage.CopyAsync()方法失败,但是这是一种变通方法,直到有人获得更多信息.
(似乎当CopyAsync()在后台任务中失败时,它将在后台任务或前台应用程序中阻止对该方法的任何未来调用)
代码段:
private async Task<StorageFile> DownloadImagefromServer(string URI, string filename) {
filename += ".png";
var rootFolder = await ApplicationData.Current.LocalFolder.CreateFolderAsync("Citations365\\CoverPics", CreationCollisionOption.OpenIfExists);
var coverpic = await rootFolder.CreateFileAsync(filename, CreationCollisionOption.FailIfExists);
try {
HttpClient client = new HttpClient();
byte[] buffer = await client.GetByteArrayAsync(URI); // Download file
using (Stream stream = await coverpic.OpenStreamForWriteAsync())
stream.Write(buffer, 0, buffer.Length); // Save
return coverpic;
} catch {
return null;
}
}