インテントのresultdataからtreeUriを取得しました。SDカードのルートパスを選択しました。treeUri を string 型の結果にキャストするとcontent://com.android.externalstorage.documents/tree/C4FD-B5C6%3A
.
質問1。
その結果は正しいですか?
質問2。
とにかく、私はこのように Documentfile を作成しました。
DocumentFile tree = DocumentFile.fromTreeUri(MusicServiceActivity.getAppContext(),Uri.parse(stringtreeUri));
.
そして、私は印刷しました
tree.canWrite
Log.e を使用していますが、常に false を返します。
これをtrueに戻すにはどうすればよいですか?
追加した
これが私のonActivityResultです..
public void onActivityResult(int requestCode, int resultCode, Intent resultData) {
if (resultCode != RESULT_OK)
return;
else {
Uri treeUri = resultData.getData();
Log.e("treeuri",treeUri.toString());
grantUriPermission(getPackageName(), treeUri, Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
if(Build.VERSION.SDK_INT >= 19)
getContentResolver().takePersistableUriPermission(treeUri, Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
String str = treeUri.toString();
try{
File dir = new File (Environment.getExternalStorageDirectory().getAbsolutePath());
if(!dir.exists()){
dir.mkdir();
}
FileOutputStream fos = new FileOutputStream(Environment.getExternalStorageDirectory().getAbsolutePath()+"/treeuri.txt", true);
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(fos));
writer.write(str);
writer.flush();
writer.close();
fos.close();
}catch (IOException e){
e.printStackTrace();
}
}
}