11

I am using the File Picker Plugin to choose a file from a device. The file is chosen in the datatype of a PlatformFile, but I want to send the file to Firebase Storage and I need a regular File for that. How can I convert the PlatformFile into a File so that I can send it to Firebase Storage? Here is the code:

PlatformFile pdf;
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();

void _trySubmit() async {
    final isValid = _formKey.currentState.validate();
    if (isValid) {
      _formKey.currentState.save();
      final ref = FirebaseStorage.instance
          .ref()
          .child('article_pdf')
          .child(title + '-' + author + '.pdf');
      await ref.putFile(pdf).onComplete; // This throws an error saying that The argument type 'PlatformFile' can't be assigned to the parameter type 'File'
    }
  }

void _pickFile() async {
    FilePickerResult result = await FilePicker.platform.pickFiles(
      type: FileType.custom,
      allowedExtensions: ['pdf'],
    );
    if (result != null) {
      pdf = result.files.first;
    }
  }
Shitij Govil
  • 159
  • 1
  • 8

3 Answers3

15

Try this:

PlatformFile pdf;
final File fileForFirebase = File(pdf.path);

Happy coding! :)

Max Mit
  • 320
  • 2
  • 7
2

If you're on a web app, you can post image files to Firestore with flutter_file_picker: (Taken from the FAQ page): https://github.com/miguelpruivo/flutter_file_picker/wiki/FAQ

// get file
final result = await FilePicker.platform.pickFiles(type: FileType.any, allowMultiple: 
false);

if (result.files.first != null){
  var fileBytes = result.files.first.bytes;
  var fileName = result.files.first.name;

  // upload file
  await FirebaseStorage.instance.ref('uploads/$fileName').putData(fileBytes);
}
Rivers Cuomo
  • 316
  • 2
  • 5
  • 11
-1

This works

File(platformFile.name)

Just be sure not duplicates in the file names in your logic.

Zach Gonzalez
  • 792
  • 7
  • 16