I cannot find any control to upload files in windows phone .Is it possible to upload files in wp 8.When we click it must open phone memory(where the document resides)
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
In windows phone 8, There is no control like
FileUpload
instead of that you need to useBackground Agent
to upload files. here are two Good Samples you can go through How to Upload a File from a Windows Phone App and Auto-upload SampleIf you are going to Upload Image files, then you can use the PhotoChooserTask to select file and upload file using the HttpClient Library.
For other file types, You can access ONLY if it is stored in SD card. See here for accessing files from SD Card in windows phone.
Only in Windows Phone 8.1, you can access the Downloads Folder.