Re: [android-developers] File Browser: can not data folder access

2011-04-11 Thread Kostya Vasilyev
11.04.2011 2:41, bahtiyar kara пишет: I know that if ı create a file in internal memory, it s saved under /data/data directory. Is it wrong? No, that's correct. Just don't hard-code /data/data/package - rather use Context.openFileInput / openFileOutput / getFilesDir. and when ı list files

Re: [android-developers] File Browser: can not data folder access

2011-04-11 Thread bahtiyar kara
Thanks for your advices Kostya.I will try to do them... 2011/4/11 Kostya Vasilyev kmans...@gmail.com 11.04.2011 2:41, bahtiyar kara пишет: I know that if ı create a file in internal memory, it s saved under /data/data directory. Is it wrong? No, that's correct. Just don't hard-code

[android-developers] File Browser: can not data folder access

2011-04-10 Thread eagles78
hello, I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? Thanks... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread moonrie
'cause you do not have permission? On Sat, Apr 9, 2011 at 8:11 PM, eagles78 bahtiyarkara1...@gmail.com wrote: hello, I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? Thanks... -- You

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Mark Murphy
On Sat, Apr 9, 2011 at 8:11 AM, eagles78 bahtiyarkara1...@gmail.com wrote: I wrote a file browser application for my project.when directories list in a listview,ı cant access the data folder. What can ı do access in it.? You don't. On production hardware, applications can access external

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread bahtiyar kara
@monrie there is no permission for access to data folder in android so ı cant use a permission. Do you know any permission to do it? @mark I dont have an experience.Have you used a real file browser in Android and How it access these files? Cant I access there with any way? I think if I request

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Kristopher Micinski
No, you don't request root permission. You have to have a rooted phone, there's no such thing as a rooted permission. And so no, there won't be any permission you can request to see the filesystem. Kris On Sun, Apr 10, 2011 at 1:08 PM, bahtiyar kara bahtiyarkara1...@gmail.comwrote: @monrie

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Mark Murphy
On Sun, Apr 10, 2011 at 1:08 PM, bahtiyar kara bahtiyarkara1...@gmail.com wrote: How it access these files? It doesn't. I think if I request a root access in my application, then can ı access data folder? Yes, but rooting devices isn't really within the scope of this group, and you cannot

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread moonrie
k, *the permission I suggest* is linux file permission, not the android permissions declared in the manifest file, On Mon, Apr 11, 2011 at 1:08 AM, bahtiyar kara bahtiyarkara1...@gmail.comwrote: @monrie there is no permission for access to data folder in android so ı cant use a permission.

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Kostya Vasilyev
10.04.2011 21:29, moonrie пишет: k, *the permission I suggest* is linux file permission, not the android permissions declared in the manifest file, If that was possible with Linux, that'd be a massive security hole, and not just in Android. Thankfully, there isn't one there. Android uses

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread bahtiyar kara
hi again, There is a file browser: http://www.lysesoft.com/products/andexplorer/ If ı download this application in my android system, can ı access data folder or other system folders? http://www.lysesoft.com/products/andexplorer/How this application access the data folder? or it cant do that?

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread Kostya Vasilyev
Why do you think you need to access other applications' private data storage? 11.04.2011 2:20 пользователь bahtiyar kara bahtiyarkara1...@gmail.com написал: hi again, There is a file browser: http://www.lysesoft.com/products/andexplorer/ If ı download this application in my android system,

Re: [android-developers] File Browser: can not data folder access

2011-04-10 Thread bahtiyar kara
I know that if ı create a file in internal memory, it s saved under /data/data directory. Is it wrong? and when ı list files in my application, for example ı want to open an image or an mp3 file in internal directory in this folder. I think ı need to access there? or I think wrong? What ı want to