Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I always get the below error while trying to upload the photo chosen from pictures.

System.ArgumentException: Input parameter 'uploadLocation' is invalid. 'uploadLocation' must be rooted in \shared\transfers. Parameter name: uploadLocation

The path of the image files chosen was:

C:\Data\Users\Public\Pictures\Camera Roll\WP_20130228_001.jpg.

Any idea how I can supply the image file in the expected format?

MainPage.client.BackgroundUploadAsync("ToFolder", new System.Uri("C:\Data\Users\Public\Pictures\Camera Roll\WP_20130228_001.jpg"), OverwriteOption.Overwrite);
share|improve this question
1  
You're trying to access an image on your PC, from your phone? I don't think it can work like that. Check out the answer on this question, it explains BackgroundUploadAsync() a little better, and links to some documentation. – lhan16 Feb 27 at 19:17
Oops, here's the link: stackoverflow.com/questions/14482876/… – lhan16 Feb 27 at 21:16

1 Answer

The c drive always come in windows phone also.just by removing the entire path and only giving the file name as parameter has fixed the issue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.