0

我想要将图片库中的文件复制到本地文件夹:

string path = ApplicationData.Current.LocalFolder.Path + "\\files";//error:Additional information: Object reference not set to an instance of an object.
folder = await folder.GetFolderAsync(path);
 await file.CopyAsync(folder);

我得到了这个错误:附加信息:对象引用未设置为对象的实例。

我究竟做错了什么 ?

4

2 回答 2

2

GetFolderAsync使用指定的文件夹名称从当前文件夹中获取单个子文件夹。在您的代码中,folder must be null您需要将其初始化为某个值。这应该适合你 -

StorageFolder folder = ApplicationData.Current.LocalFolder;
folder = await folder.GetFolderAsync("files");
await file.CopyAsync(folder);
于 2013-07-13T18:49:54.073 回答
0

要么ApplicationDatanull ,要么.Current是,null 要么.LocalFolder是,null 要么.Pathnull

您将需要找出哪个并更正它。

于 2013-07-13T17:46:16.087 回答