-3

I have a file in my internal storage, like folderOne/folderTwo/textfile.txt
How can I access this file programmatically?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Michael
  • 27
  • 5
  • access? you want to read it's content? http://stackoverflow.com/questions/14376807/how-to-read-write-string-from-a-file-in-android?answertab=active#tab-top – ᴛʜᴇᴘᴀᴛᴇʟ Oct 14 '16 at 18:39

1 Answers1

0

String yourFilePath = context.getFilesDir() + "folderOne /folderTwo/" + "textfile.txt";

File yourFile = new File( yourFilePath );

You want something like this?