好的,所以我使用以下代码在 SD 卡中创建了 2 个文件夹:
String folderPath = Environment.getExternalStorageDirectory() + "/AllAroundMe/Images/";
File file = new File(folderPath);
if(!file.exists())
{
if(file.mkdirs());
Log.d("MyTag","Successfully created folders");
}
我测试了这个程序,它确实有效,logcat 打印了上面的成功消息。
但是如果我导航到我的 SD 卡,我看不到“AllAroundMe”文件夹。
如何从我的计算机访问该文件夹?