Studyxnet / FilePicker-Plugin-for-Xamarin-and-Windows

FilePicker Plugin for Xamarin and Windows
MIT License
74 stars 52 forks source link

Need Example #65

Closed nmano2188 closed 6 years ago

nmano2188 commented 6 years ago

How to get File Path of the selected file? var data = await Plugin.FilePicker.CrossFilePicker.Current.PickFile();

        var fName = data.FileName;
        var Content = data.DataArray;
cocoke commented 6 years ago
FileData file = await CrossFilePicker.Current.PickFile();
string fName = Path.GetFileName(file.FileName);
jfversluis commented 6 years ago

Have a look at the sample project in the new repo https://github.com/jfversluis/FilePicker-Plugin-for-Xamarin-and-Windows or open an issue if you still can't get it to work.

manonaga2188 commented 6 years ago

@jfversluis I want sample for iOS project. https://github.com/jfversluis/FilePicker-Plugin-for-Xamarin-and-Windows repo does not have iOS sample.

How to implement this in xamarin iOS