在Android 中寫入SD 卡上的特定資料夾
使用提供的程式碼片段下載檔案並將其寫入根目錄時SD 卡的目錄中,您可能需要指定一個特定的資料夾來寫入檔案。可以透過修改程式碼建立一個目錄,然後將檔案寫入該目錄來實現。
File sdCard = Environment.getExternalStorageDirectory(); // Get the SD card root directory File dir = new File (sdCard.getAbsolutePath() + "/dir1/dir2"); // Create a directory with the desired path dir.mkdirs(); // Create the directory if it doesn't exist File file = new File(dir, "filename"); // Create a new file in the directory FileOutputStream f = new FileOutputStream(file); // Open the file for writing ...
透過此修改,檔案將寫入指定的資料夾,而不是寫入根目錄SD卡。
以上是如何將檔案寫入Android SD卡上的特定目錄?的詳細內容。更多資訊請關注PHP中文網其他相關文章!