好了,所以我用下面的代碼創建的SD卡2個文件夾:SD卡新建文件夾
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」文件夾。
如何從我的電腦訪問該文件夾?
通過這個 - http://facebooksso.blogspot.in/ –
我試過你的代碼後,添加權限,看看有什麼happned。我也添加圖片。 –