2013-04-01 44 views
0

我將如何使用媒體掃描儀連接使文件對Android文件傳輸可見。 這裏提到一個問題(Android File Transfer cannot see a folder created by app所以我偶然發現了一些東西....文件掃描媒體掃描儀連接

當前正在編寫一個應用程序,只是想確保文件夾在那裏,如果不創建它。最終,文件夾中的數據將需要從文件夾中刪除或添加更多數據。

感謝您對這個掃描儀有點困惑的幫助。

File internalMemory = new File("/mnt/sdcard/FMCW File Archive"); 
    if(internalMemory.exists() && internalMemory.isDirectory()) { 
     mFileList = internalMemory.listFiles(); 
    }else{ 
     createDirIfNotExist("/FMCW File Archive"); 
    } 

下面就是該方法

public static boolean createDirIfNotExist(String path) { 
    boolean ret = true; 
    File file = new File(Environment.getExternalStorageDirectory() + path); 
    if (!file.exists()) { 
     if (!file.mkdirs()) { 
      Log.e("TravellerLog :: ", "Problem creating Image folder"); 
      ret = false; 
     } 
    } 
    return ret; 
} 

-Evan

回答