Permission denied at ExternalStorageDirectory access via Flutter plugin2019 Community Moderator ElectionGrant permission required for EXTERNAL_STORAGE in Android M?“Debug certificate expired” error in Eclipse Android pluginsWhat permission do I need to access Internet from an Android application?Android create file exception EACCES (Permission denied)Unable to create external file - EACCES (permission denied)How to write to external SD card (Micro SD) when tablet has multiple external directoriesSaving picture gives FileNotFoundException ()Xamarin Forms ENOENT (No such file or directory) on API 23Can't create folder in my Android EmulatorHow to fix white screen error in Google Flutter RandomWords Widget?Flutter - Cannot copy file to new path

Confusion about Complex Continued Fraction

When a wind turbine does not produce enough electricity how does the power company compensate for the loss?

What can I do if someone tampers with my SSH public key?

Can I use a violin G string for D?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Does "Until when" sound natural for native speakers?

Whose blood did Carol Danver's receive, Mar-vell's or Yon-Rogg's in the movie?

Why couldn't the separatists legally leave the Republic?

Why does Central Limit Theorem break down in my simulation?

How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?

Is it a Cyclops number? "Nobody" knows!

Drawing close together horizontal lines in Latex

Trig Subsitution When There's No Square Root

Am I understanding this Storm King's Thunder map wrong?

What are some noteworthy "mic-drop" moments in math?

How to draw dashed arc of a circle behind pyramid?

Did Amazon pay $0 in taxes last year?

Is it possible that a question has only two answers?

Why is there an extra space when I type "ls" in the Desktop directory?

What's the 'present simple' form of the word "нашла́" in 3rd person singular female?

Which classes are needed to have access to every spell in the PHB?

Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?

What would be the most expensive material to an intergalactic society?

Is it possible to avoid unpacking when merging Association?



Permission denied at ExternalStorageDirectory access via Flutter plugin



2019 Community Moderator ElectionGrant permission required for EXTERNAL_STORAGE in Android M?“Debug certificate expired” error in Eclipse Android pluginsWhat permission do I need to access Internet from an Android application?Android create file exception EACCES (Permission denied)Unable to create external file - EACCES (permission denied)How to write to external SD card (Micro SD) when tablet has multiple external directoriesSaving picture gives FileNotFoundException ()Xamarin Forms ENOENT (No such file or directory) on API 23Can't create folder in my Android EmulatorHow to fix white screen error in Google Flutter RandomWords Widget?Flutter - Cannot copy file to new path










4















I wrote an plugin to access the ExternalStorageDirectory on Android via Dart.



android specific code for the plugin:



@Override
public void onMethodCall(MethodCall call, Result result)
if (call.method.equals("getUserDataDirectory"))
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
result.success(path);
else
result.notImplemented();




The returned path is correct storage/emulated/0. But now if i try to iterate throw the directory i get an Permission denied.



error.log



[ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3381): FileSystemException: Directory listing failed, path = '/storage/emulated/0/' (OS Error: Permission denied, errno = 13)
E/flutter ( 3381): #0 _Directory._fillWithDirectoryListing (dart:io-patch/directory_patch.dart:32)
E/flutter ( 3381): #1 _Directory.listSync (directory_impl.dart:214)
E/flutter ( 3381): #2 _MyAppState.initPathRequest (/data/user/0/com.yourcompany.userdatadirectoryexample/cache/exampleIAKNFP/example/lib/main.dart:34:25)


main.dart



 path = await Userdatadirectory.getUserDataDirectory;

var dir = new Directory(path);

List contents = dir.listSync();
for (var fileOrDir in contents)
print(fileOrDir.path);



my example/android/app/src/AndroidManifest.xml contains these additional premissions:



<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>


What is the problem here?










share|improve this question

















  • 1





    Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

    – Pritesh Patel
    Oct 11 '17 at 23:06











  • Possible Duplicate stackoverflow.com/questions/31162638/…

    – T-he-game
    Oct 11 '17 at 23:48











  • Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

    – Lukas Kirner
    Oct 12 '17 at 12:11
















4















I wrote an plugin to access the ExternalStorageDirectory on Android via Dart.



android specific code for the plugin:



@Override
public void onMethodCall(MethodCall call, Result result)
if (call.method.equals("getUserDataDirectory"))
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
result.success(path);
else
result.notImplemented();




The returned path is correct storage/emulated/0. But now if i try to iterate throw the directory i get an Permission denied.



error.log



[ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3381): FileSystemException: Directory listing failed, path = '/storage/emulated/0/' (OS Error: Permission denied, errno = 13)
E/flutter ( 3381): #0 _Directory._fillWithDirectoryListing (dart:io-patch/directory_patch.dart:32)
E/flutter ( 3381): #1 _Directory.listSync (directory_impl.dart:214)
E/flutter ( 3381): #2 _MyAppState.initPathRequest (/data/user/0/com.yourcompany.userdatadirectoryexample/cache/exampleIAKNFP/example/lib/main.dart:34:25)


main.dart



 path = await Userdatadirectory.getUserDataDirectory;

var dir = new Directory(path);

List contents = dir.listSync();
for (var fileOrDir in contents)
print(fileOrDir.path);



my example/android/app/src/AndroidManifest.xml contains these additional premissions:



<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>


What is the problem here?










share|improve this question

















  • 1





    Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

    – Pritesh Patel
    Oct 11 '17 at 23:06











  • Possible Duplicate stackoverflow.com/questions/31162638/…

    – T-he-game
    Oct 11 '17 at 23:48











  • Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

    – Lukas Kirner
    Oct 12 '17 at 12:11














4












4








4








I wrote an plugin to access the ExternalStorageDirectory on Android via Dart.



android specific code for the plugin:



@Override
public void onMethodCall(MethodCall call, Result result)
if (call.method.equals("getUserDataDirectory"))
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
result.success(path);
else
result.notImplemented();




The returned path is correct storage/emulated/0. But now if i try to iterate throw the directory i get an Permission denied.



error.log



[ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3381): FileSystemException: Directory listing failed, path = '/storage/emulated/0/' (OS Error: Permission denied, errno = 13)
E/flutter ( 3381): #0 _Directory._fillWithDirectoryListing (dart:io-patch/directory_patch.dart:32)
E/flutter ( 3381): #1 _Directory.listSync (directory_impl.dart:214)
E/flutter ( 3381): #2 _MyAppState.initPathRequest (/data/user/0/com.yourcompany.userdatadirectoryexample/cache/exampleIAKNFP/example/lib/main.dart:34:25)


main.dart



 path = await Userdatadirectory.getUserDataDirectory;

var dir = new Directory(path);

List contents = dir.listSync();
for (var fileOrDir in contents)
print(fileOrDir.path);



my example/android/app/src/AndroidManifest.xml contains these additional premissions:



<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>


What is the problem here?










share|improve this question














I wrote an plugin to access the ExternalStorageDirectory on Android via Dart.



android specific code for the plugin:



@Override
public void onMethodCall(MethodCall call, Result result)
if (call.method.equals("getUserDataDirectory"))
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
result.success(path);
else
result.notImplemented();




The returned path is correct storage/emulated/0. But now if i try to iterate throw the directory i get an Permission denied.



error.log



[ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter ( 3381): FileSystemException: Directory listing failed, path = '/storage/emulated/0/' (OS Error: Permission denied, errno = 13)
E/flutter ( 3381): #0 _Directory._fillWithDirectoryListing (dart:io-patch/directory_patch.dart:32)
E/flutter ( 3381): #1 _Directory.listSync (directory_impl.dart:214)
E/flutter ( 3381): #2 _MyAppState.initPathRequest (/data/user/0/com.yourcompany.userdatadirectoryexample/cache/exampleIAKNFP/example/lib/main.dart:34:25)


main.dart



 path = await Userdatadirectory.getUserDataDirectory;

var dir = new Directory(path);

List contents = dir.listSync();
for (var fileOrDir in contents)
print(fileOrDir.path);



my example/android/app/src/AndroidManifest.xml contains these additional premissions:



<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>


What is the problem here?







android dart flutter






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 11 '17 at 22:53









Lukas KirnerLukas Kirner

334519




334519







  • 1





    Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

    – Pritesh Patel
    Oct 11 '17 at 23:06











  • Possible Duplicate stackoverflow.com/questions/31162638/…

    – T-he-game
    Oct 11 '17 at 23:48











  • Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

    – Lukas Kirner
    Oct 12 '17 at 12:11













  • 1





    Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

    – Pritesh Patel
    Oct 11 '17 at 23:06











  • Possible Duplicate stackoverflow.com/questions/31162638/…

    – T-he-game
    Oct 11 '17 at 23:48











  • Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

    – Lukas Kirner
    Oct 12 '17 at 12:11








1




1





Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

– Pritesh Patel
Oct 11 '17 at 23:06





Check for Runtime Permission. Refer developer.android.com/guide/topics/permissions/…

– Pritesh Patel
Oct 11 '17 at 23:06













Possible Duplicate stackoverflow.com/questions/31162638/…

– T-he-game
Oct 11 '17 at 23:48





Possible Duplicate stackoverflow.com/questions/31162638/…

– T-he-game
Oct 11 '17 at 23:48













Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

– Lukas Kirner
Oct 12 '17 at 12:11






Ok but now i have te problem that i cant acces the Activity so i cant call requestPermission(). So is it possible to get the Context or Activity in an Flutter plugin project? And how?

– Lukas Kirner
Oct 12 '17 at 12:11













1 Answer
1






active

oldest

votes


















0














You can use either of these 2 package to ask for device permission: https://pub.dartlang.org/packages/simple_permissions or https://pub.dartlang.org/packages/permission . They have simple APIs and comprehensive examples.






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46698751%2fpermission-denied-at-externalstoragedirectory-access-via-flutter-plugin%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You can use either of these 2 package to ask for device permission: https://pub.dartlang.org/packages/simple_permissions or https://pub.dartlang.org/packages/permission . They have simple APIs and comprehensive examples.






    share|improve this answer



























      0














      You can use either of these 2 package to ask for device permission: https://pub.dartlang.org/packages/simple_permissions or https://pub.dartlang.org/packages/permission . They have simple APIs and comprehensive examples.






      share|improve this answer

























        0












        0








        0







        You can use either of these 2 package to ask for device permission: https://pub.dartlang.org/packages/simple_permissions or https://pub.dartlang.org/packages/permission . They have simple APIs and comprehensive examples.






        share|improve this answer













        You can use either of these 2 package to ask for device permission: https://pub.dartlang.org/packages/simple_permissions or https://pub.dartlang.org/packages/permission . They have simple APIs and comprehensive examples.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 6 at 14:54









        TruongSinhTruongSinh

        1,493822




        1,493822





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46698751%2fpermission-denied-at-externalstoragedirectory-access-via-flutter-plugin%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved