I would like to share a file given by its filepath. After clicking Share charm it says: there was a problem with the data coming from my app. What is the right format for the filepath?
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 } );
I've also tried:
string filepath = "C:\\Users\\USER\\Pictures\\pic.png";
string filepath = @"C:\Users\USER\Pictures\pic.png";
Thanks in advance.