Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
27 views

I am trying to work my head around the whole complexity of using the OneDrive File Picker API (v8) and cannot seem to find a way to achieve one thing I want. My web app (an editor) allows users to ...
Pierre's user avatar
  • 69
0 votes
1 answer
58 views

We implemented a Sheet AddOn that generates documents from a Google Sheet. Google asked to reduce the scope to drive.file and use File Picker to select Folders and Files that the AddOn can see and ...
Christian Hauf's user avatar
1 vote
0 answers
55 views

In my Flutter application, I have implemented a feature that allows users to download a document and save it to a location of their choice. The process involves: Using the FilePicker package to let ...
Gowtham's user avatar
  • 51
2 votes
4 answers
642 views

/Users/mycomputer/.pub-cache/hosted/pub.dev/file_picker-8.1.5/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:257: error: cannot find symbol if (registrar != null) { ...
Alpit Panchal's user avatar
2 votes
0 answers
295 views

I am getting filepicker dependency error in my android app. It is not able to resolve the dependency version. I am using the version 2.2.5 as mentioned in the documentation. I tried to download it ...
PRIYAM JAIN's user avatar
0 votes
1 answer
426 views

I need to upload a PDF file to the server. I use this code. void pickFiles() async { try { final result = await FilePicker.platform.pickFiles( allowMultiple: false, type: ...
Biagio63's user avatar
2 votes
1 answer
248 views

When using a file picker in my Android application, I'm encountering an issue where selecting images results in duplicates being created on the device. This happens every time I select and potentially ...
AJUL K JOSE's user avatar
0 votes
1 answer
930 views

Here is my code : FilePickerResult? result = await FilePicker.platform.pickFiles( // TODO: check if this is really true // This solution of filtering does not work, because the package ...
Rami Dhouib's user avatar
0 votes
2 answers
60 views

I've this Button to select images: IconButton( onPressed: () async { final results = await FilePicker.platform.pickFiles( allowMultiple: true, ...
steste95's user avatar
0 votes
1 answer
196 views

Hello i would like to ask, is there a way to resolve this platform exption while picking files from google drive I/flutter ( 2761): Error while picking file: PlatformException(unknown_path, Failed to ...
Convert.ToInt32's user avatar
0 votes
0 answers
145 views

I am writing a music player app in Flutter, aimed primarily at playing audio files in android external sd storage folders like "storage/emulated/0/music". As per my study, from API 30 ...
Sachin Khatri's user avatar
0 votes
0 answers
32 views

I'm currently working on a project that is using the OneDrive filepicker v7.2 I would like to limit the file selection by setting a filter when open up the filepicker. The file extension that I would ...
CnV's user avatar
  • 391
0 votes
1 answer
227 views

I am using a file picker to let the user choose a data input file (.txt). After some research, I finally found a solution that avoids any deprecated method, using ActivityResultLauncher: Declaring the ...
Simon W's user avatar
  • 101
0 votes
2 answers
82 views

I have a table and each row has one or more user inputs with a focusout event listener attached, that calls a function: function inputFocusOut(event, el) { let row = el.closest('tr'); let ...
user3517375's user avatar
1 vote
0 answers
410 views

Is there a way to get a listableURI anymore? fdialog := widget.NewButton("", func() { locationURI := storage.NewFileURI("myfilepath") listableURI, ...
Ethan Leonard's user avatar
0 votes
0 answers
306 views

I use the file_picker package for my flutter app to provide the user with the possibility to select and import simple txt files. My code for this is currently as follows: FilePickerResult? result = ...
Mercutio1243's user avatar
0 votes
1 answer
1k views

I have implemented file_picker in my Flutter web app for uploading files. It works fine on Chrome but not on Safari. On Safari, the file picker does not show. Here is my code: Future<void> ...
Zigglzworth's user avatar
  • 6,891
3 votes
1 answer
399 views

I am using the flutter file picker 6.0.0.When i try to select file from the picker file.I used singleInstance in manifest. FilePickerResult? result = await FilePicker.platform.pickFiles(...
Ramesh sambu's user avatar
  • 3,535
1 vote
1 answer
2k views

I use @capawesome/capacitor-file-picker for pick files on mobile. Yet it does not return blob. const result = await FilePicker.pickFiles({ types: ['application/pdf'], multiple: false, ...
Ivan Yunus's user avatar
0 votes
1 answer
377 views

Im using react native to make a app, and I have a problem using expo-image-picker,how Can I show the name of the file that I choose? in documentation doesnt appear any related this is my code: ...
Robert Calderon's user avatar
0 votes
1 answer
555 views

I implemented the file picker as described here: learn.microsoft.com/... When I open the android explorer, all files (jpg + png) are greyed-out / not accessible. The important parts of my app you'll ...
Frank Mehlhop's user avatar
0 votes
0 answers
37 views

I've been trying to initialize this picker for three days now. In the code the line "var hWnd = WinRT.Interop.WindowNative.GetWindowHandle(window);" causes the error "System....
lezzka's user avatar
  • 13
2 votes
2 answers
2k views

I have two profiles in my phone, personal and work profile. The file picker I am using works well in the personal profile, but when I try to use the same file picker in the work profile, I get the ...
Saurabh Jain's user avatar
0 votes
0 answers
153 views

We are getting some issue in the prod as below and It only observed to a few devices in the prod. I believe we don't need to give any read write or read image permission to access any storage ...
user14552676's user avatar
1 vote
2 answers
432 views

I'm encountering an issue with a .NET MAUI application where I'm using the FilePicker.PickAsync method to allow users to pick image files. However, I'm consistently getting the following error: Error ...
Saiteja Rangi's user avatar

1
2 3 4 5
9