445 questions
0
votes
0
answers
27
views
Allow folder selection (and filter) using the File Picker v8 API on work/school accounts
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 ...
0
votes
1
answer
58
views
Files created by a Sheet Addon are only visible for the user that has opened the sheet when scope is restricted to drive.file
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 ...
1
vote
0
answers
55
views
Handling PathAccessException in iOS for File Download
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 ...
2
votes
4
answers
642
views
Flutter Execution failed for task ':file_picker:compileDebugJavaWithJavac'
/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) {
...
2
votes
0
answers
295
views
Failed to resolve: com.droidninja:filepicker:2.2.5
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 ...
0
votes
1
answer
426
views
How to get file from "file_picker" to upload in flutter web?
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: ...
2
votes
1
answer
248
views
Problem with File Picker: Duplicate Image Creation
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 ...
0
votes
1
answer
930
views
FilePicker extension Flutter problem with custom types
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 ...
0
votes
2
answers
60
views
Flutter Firebase: How to upload multiple images?
I've this Button to select images:
IconButton(
onPressed: () async {
final results = await FilePicker.platform.pickFiles(
allowMultiple: true,
...
0
votes
1
answer
196
views
Flutter File picker platformException
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 ...
0
votes
0
answers
145
views
Flutter: Accessing external sd card media files for audio player (Direct path vs Scoped storage)
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 ...
0
votes
0
answers
32
views
OneDrive FilePicker cannot set filter with uppercase
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 ...
0
votes
1
answer
227
views
How to set the original uri of a file picker using ActivityResultLauncher
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 ...
0
votes
2
answers
82
views
How to see if focus on file picker dialogue in JavaScript
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 ...
1
vote
0
answers
410
views
Fyne get listableURI
Is there a way to get a listableURI anymore?
fdialog := widget.NewButton("", func() {
locationURI := storage.NewFileURI("myfilepath")
listableURI, ...
0
votes
0
answers
306
views
How to identify encoding standard of txt file in flutter/dart?
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 = ...
0
votes
1
answer
1k
views
Flutter web : file_picker : Not working on Safari
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> ...
3
votes
1
answer
399
views
Flutter filepicker android singleInstance mode it is returns file path as null
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(...
1
vote
1
answer
2k
views
Capacitor File Picker doesn't return a blob on native mobile
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,
...
0
votes
1
answer
377
views
How can I get the name of the file in expo-image-picker?
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:
...
0
votes
1
answer
555
views
MAUI Can't load images from android device
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 ...
0
votes
0
answers
37
views
Filepicker won't start [duplicate]
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....
2
votes
2
answers
2k
views
Platform exception: PlatformException(already_active, File picker is already active, null, null) in Work profile
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 ...
0
votes
0
answers
153
views
The Storage Access Framework exceptions
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 ...
1
vote
2
answers
432
views
HRESULT E_FAIL has been returned from a call to a COM component
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 ...