[android-developers] Re: written file not found

2009-03-27 Thread Mak
What is the best way to create a file in my application, that I can use/ read outside of the application? Aren't i able to set a path for my file e.g. write it on the sdcard? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[android-developers] Re: written file not found

2009-03-26 Thread Mark Murphy
Mak wrote: >> Probably, that is because they cannot browse /data due to security >> restrictions. > > What permissions do i need to see all files on the device? > tools like ASTRO have -i hope so- the permissions for reading all > self written files on my device. Probably not. Or, more accuratel

[android-developers] Re: written file not found

2009-03-26 Thread Mak
> > Probably, that is because they cannot browse /data due to security > restrictions. What permissions do i need to see all files on the device? tools like ASTRO have -i hope so- the permissions for reading all self written files on my device. maybe my application has not enough permissions? i

[android-developers] Re: written file not found

2009-03-25 Thread Mark Murphy
Mak wrote: > Hi. > I've written an file with the following comands: > > String ausgabe; > > try{ >java.io.BufferedWriter fos = (new java.io.BufferedWriter( new > java.io.OutputStreamWriter( > openFileOutput("testfile.txt", MODE_APPEND ; > > if (ausgabe.length() !=