0
使用經典的FileSystem API,我們可以獲得帶有附加參數的輸出流,以寫入文件末尾。Android SAF帶附加參數的openOutPutStream參數
這裏是我用來存取權限的文件中的代碼:
經典文件系統API:
boolean append = true;
File target = new File(...);
OutputStream outStream = new FileOutputStream(target, append);
SAF API:
boolean append = true;
File target = new File(...);
DocumentFile targetDocument = getDocumentFile(target, false, context);
OutputStream outStream = context.getContentResolver().openOutputStream(targetDocument.getUri());
但是我沒有追加參數在SAF API中。
如何使用SAF API追加到文件?