标签: android
我的内部存储空间中有一个文件,例如folderOne/folderTwo/textfile.txt 如何以编程方式访问此文件?
folderOne/folderTwo/textfile.txt
答案 0 :(得分:0)
String yourFilePath = context.getFilesDir()+" folderOne / folderTwo /" +" textfile.txt&#34 ;;
归档yourFile = new File(yourFilePath);
你想要这样的东西吗?