Recent content by Praveen_Kumar

  1. P

    Accessing Images with File Path

    I have already seen the above thread. What I was looking for is to retrieve File path not file name. Here is the exact requirement: I want to create a custom UI and allow the user to select multiple Images(which cannot be done by PhotoChooserTask) from MediaLibrary. Once the user selects I want...
  2. P

    Accessing Images with File Path

    I tried using the path returned by e.OriginalFileName of PhotoChooserTask to set Source of an Image and it seems to be working. image1.Source = new BitmapImage(new Uri(e.OriginalFileName)); but what I actually want is to be able to get filepaths of more than one image at a time. Is it...
  3. P

    Accessing Images with File Path

    Is it Possible to retrieve Physical path of Images in Media Library other than using PhotoChoosertask? Please reply