我正试图在我的平板电脑上找到一个文件夹。
我可以使用以下代码在我的PHONE上找到该文件夹:
File settingsFolder = new File(Environment.getExternalStorageDirectory(), settingsFileDirectory);
我可以在手机上找到该文件夹,但不能在我的平板电脑上找到,那里有什么?
在同一目录中创建一个具有相同名称的文件夹(与下载文件夹相同)。
迎接
答案 0 :(得分:0)
而不是
Environment.getExternalStorageDirectory()
使用
context.getFilesDir().getPath() + ....destination...
实施例
new File(
context.getFilesDir().getPath()
+ "/settings"
+ "/happyness");