我想共享其文件路径给出的文件。单击共享魅力后,它说:来自我的应用程序的数据存在问题。文件路径的正确格式是什么?
string filepath = "C:\Users\USER\Pictures\pic.png"; // bad format, unrecognized escape sequence
StorageFile file = await StorageFile.GetFileFromPathAsync(filepath);
args.Request.Data.SetStorageItems(new[] { file } );
我也试过:
string filepath = "C:\\Users\\USER\\Pictures\\pic.png";
string filepath = @"C:\Users\USER\Pictures\pic.png";
提前致谢。