寫入SD卡上的資料夾
您目前的程式碼使用Environment.getExternalStorageDirectory()將檔案儲存到SD卡的根目錄SD 卡。若要寫入特定資料夾,請依照下列步驟操作:
取得SD 卡的絕對路徑:
File sdCard = Environment.getExternalStorageDirectory();
建立想要的資料夾:
File dir = new File (sdCard.getAbsolutePath() + "/myapplication/downloads"); dir.mkdirs(); // Creates non-existent directories
在資料夾中建立檔案:
File file = new File(dir, "myfile.txt");
開啟檔案輸出流並將資料寫入檔案:
FileOutputStream f = new FileOutputStream(file); f.write(...); f.close();
範例程式碼:
File sdCard = Environment.getExternalStorageDirectory(); File dir = new File (sdCard.getAbsolutePath() + "/myapp/downloads"); dir.mkdirs(); File file = new File(dir, "file.txt"); FileOutputStream f = new FileOutputStream(file); f.write("Hello world!".getBytes()); f.close();
透過這種方法,您現在可以將檔案寫入任何特定的SD 卡上的資料夾。
以上是如何將檔案寫入SD卡上的特定資料夾?的詳細內容。更多資訊請關注PHP中文網其他相關文章!