Recommendations for file manager on Android

The place to discuss anything and everything about running your LiveCode on Android

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
dave.kilroy
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 858
Joined: Wed Jun 24, 2009 1:17 pm
Contact:

Recommendations for file manager on Android

Post 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
"...this is not the code you are looking for..."
Simon
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 3901
Joined: Sat Mar 24, 2007 2:54 am

Re: Recommendations for file manager on Android

Post 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
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
dave.kilroy
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 858
Joined: Wed Jun 24, 2009 1:17 pm
Contact:

Re: Recommendations for file manager on Android

Post 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!
"...this is not the code you are looking for..."
jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7423
Joined: Sat Apr 08, 2006 8:31 pm
Contact:

Re: Recommendations for file manager on Android

Post 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.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
dave.kilroy
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 858
Joined: Wed Jun 24, 2009 1:17 pm
Contact:

Re: Recommendations for file manager on Android

Post by dave.kilroy »

Thanks Jacque - ah well - thought I should ask in case...
"...this is not the code you are looking for..."
MaxV
Posts: 1580
Joined: Tue May 28, 2013 2:20 pm
Contact:

Re: Recommendations for file manager on Android

Post 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. :wink:
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
dave.kilroy
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 858
Joined: Wed Jun 24, 2009 1:17 pm
Contact:

Re: Recommendations for file manager on Android

Post 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
"...this is not the code you are looking for..."
simonessalamones
Posts: 1
Joined: Mon Jul 13, 2015 7:21 pm

Re: Recommendations for file manager on Android

Post 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
FourthWorld
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10103
Joined: Sat Apr 08, 2006 7:05 am
Contact:

Re: Recommendations for file manager on Android

Post 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.
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7423
Joined: Sat Apr 08, 2006 8:31 pm
Contact:

Re: Recommendations for file manager on Android

Post by jacque »

FourthWorld wrote:FWIW I've been very pleased with ES File Explorer:
https://play.google.com/store/apps/deta ... .pop&hl=en
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. :(
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
FourthWorld
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10103
Joined: Sat Apr 08, 2006 7:05 am
Contact:

Re: Recommendations for file manager on Android

Post by FourthWorld »

jacque wrote:
FourthWorld wrote:FWIW I've been very pleased with ES File Explorer:
https://play.google.com/store/apps/deta ... .pop&hl=en
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.
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Saman Sjr.
Posts: 49
Joined: Sat Nov 30, 2013 6:40 am

Re: Recommendations for file manager on Android

Post 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
MaxV
Posts: 1580
Joined: Tue May 28, 2013 2:20 pm
Contact:

Re: Recommendations for file manager on Android

Post 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
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
Post Reply