Skip to main content
長崎ちゃんぽん
Participating Frequently
August 30, 2017
Question

Cannot get files in userDirectory with getDirectoryListing()

  • August 30, 2017
  • 1 reply
  • 501 views

I'm testing getDirectoryListing() with my Android devices.

Then files are obtained using Android device (Ver.4.1.2).

but are not obtained using (Ver.6.0.1).

The code is very simple.

----------------------------------------------------------

var FArr:Array = File.userDirectory.getDirectoryListing();

trace("Number of files = " + FArr.length.toString() );

for(var i:int=0; i<FArr.length ; i++){

     trace("name = " + FArr.name );

}

----------------------------------------------------------

As written in the forum (https://forums.adobe.com/message/6748751#6748751)

I set WRITE_EXTERNAL_STORAGE permission in the app manifest.

But I've been unable to get the outputs yet.

Does anyone know the resolution?

regards

This topic has been closed for replies.

1 reply

長崎ちゃんぽん
Participating Frequently
August 30, 2017

Thank you for the kind advice.

I'll read and try it and write the results later.

Best regards.

長崎ちゃんぽん
Participating Frequently
August 31, 2017

Thanks to the advice,  I've almost been able to reach to the resolution.

I refered a sample in the web page below.

https://forums.adobe.com/thread/2267876

Thank you!