我想要将图片库中的文件复制到本地文件夹:
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);
我得到了这个错误:附加信息:对象引用未设置为对象的实例。
我究竟做错了什么 ?