Page 1 of 1
Recommendations for file manager on Android
Posted: Sat Mar 07, 2015 3:47 pm
by dave.kilroy
Hi all
I would like to use an app on my Android device that can see files inside the specialFolderPath("documents") of LiveCode standalones I install on it - is this possible on Android and if so which app would you recommend?
Kind regards
Dave
Re: Recommendations for file manager on Android
Posted: Sat Mar 07, 2015 6:35 pm
by Simon
Hi Dave,
I'd use liveCode
Code: Select all
set the defaultFolder to specialFolderPath("documents")
answer the files
But I probably misunderstood your question.
Simon
Re: Recommendations for file manager on Android
Posted: Sat Mar 07, 2015 7:04 pm
by dave.kilroy
Thanks Simon - I think I asked the question in a clunky way
I'm fine to use LiveCode to check what's in specialfolderpath("documents") - but when testing on a device it can sometimes be useful to have a peek in there while my app is running.
When developing for iOS I use an app called PhoneView to do the peeking - and was wondering if there was something comparable I could use for Android...
Kind regards
Dave
PS: I'd like to avoid rooting the phone...
EDIT: actually rather than me asking my question in a clunky way I think I was just asking a noob question!
Re: Recommendations for file manager on Android
Posted: Sat Mar 07, 2015 9:33 pm
by jacque
Nope, you can't look in there without rooting the device. Once you've done that, any Android file manager can see what's in there. But rooting opens you up to all kinds of malware, so I don't do that.
Re: Recommendations for file manager on Android
Posted: Sat Mar 07, 2015 10:48 pm
by dave.kilroy
Thanks Jacque - ah well - thought I should ask in case...
Re: Recommendations for file manager on Android
Posted: Wed Mar 11, 2015 5:59 pm
by MaxV
You can see all the
virtual app files and folders only inside the app itself.
I usually create my file browser inside my apps. I use a datagrid and the example code of Simon.

Re: Recommendations for file manager on Android
Posted: Wed Mar 11, 2015 6:08 pm
by dave.kilroy
Thanks MaxV - I don't actually have a problem using LiveCode to check on files and folder, I was wondering if there was another app I could use during testing on the device (sometimes an external check is useful) ... but I don't think there is unless I root my device (which I don't want to do)
Kind regards
Dave
Re: Recommendations for file manager on Android
Posted: Mon Jul 13, 2015 7:36 pm
by simonessalamones
Im using file managing system Filevista.FileVista turns your web site into a web file server in few minutes and lets you share files with your clients or staff using any browser or device.gleamtech
Re: Recommendations for file manager on Android
Posted: Mon Jul 13, 2015 8:24 pm
by FourthWorld
FWIW I've been very pleased with ES File Explorer:
https://play.google.com/store/apps/deta ... .pop&hl=en
I use it on all my phones and tablets, and have been impressed with how they've managed to squeeze in a tremendous number of features without impairing usability.
Re: Recommendations for file manager on Android
Posted: Mon Jul 13, 2015 8:42 pm
by jacque
Me too, it's the first thing I install on any new Android device. But it still won't read the data/data/ folder without root.

Re: Recommendations for file manager on Android
Posted: Mon Jul 13, 2015 9:34 pm
by FourthWorld
jacque wrote:
Me too, it's the first thing I install on any new Android device. But it still won't read the data/data/ folder without root.

That's a valuable feature. If it could, we'd all be in trouble.
Re: Recommendations for file manager on Android
Posted: Fri Aug 07, 2015 5:38 am
by Saman Sjr.
Hi,
I have a rooted device and i can read "/data/data/" with ES File Explorer,
but when i try this :
Code: Select all
set the defaultFolder to "/data/data/"
answer the folders
didn't display anything, it work with other folder.
any advice ?
best regard's
Sam
Re: Recommendations for file manager on Android
Posted: Fri Aug 07, 2015 10:51 am
by MaxV
Apps are in a virtual file system, so only an app can read its path.
That path doesn't really exists.
App A can read virtual path A, app B can read virtual path B; but app A can't read virtual path of B.
Best regards
Max