我正在尝试使js File-based 文
档系统适应某种js DocumentFile 用
途,以便允许外部存储对API> = 29的读/写访问。
我让用户使用来选择SD卡根目录js Intent.ACTION_OPEN_DOCUMENT_TREE ,
然后js Uri 按
预期方式返回a ,然后可以使用来处理:
```js
getContentResolver().takePersistableUriPermission(resultData.getData(), Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
我可以成功浏览外部存储内容直至所选根目录。都好。
但是我需要做的是在选择的(子)文件夹中写入一个任意文件,这就是我遇到问题的地方。
```js
DocumentFile file = DocumentFile.fromSingleUri(mContext, Uri.parse(toPath));
Uri uri = file.getUri();
FileOutputStream output = mContext.getContentResolver().openOutputStream(uri);
除了js openOutputStream() 通
话,我得到:
java.io.FileNotFoundException: Failed to open for writing: java.io.FileNotFoundException: open failed: EISDIR (Is a directory)
这让我有些困惑,但是“找不到文件”部分建议我可能需要先创建空白的输出文件,所以我尝试这样做,例如:
DocumentFile file = DocumentFile.fromSingleUri(mContext, Uri.parse(toPath));
Uri uri = file.getUri();
if (file == null) {
return false;
}
if (file.exists()) {
file.delete();
}
DocumentFile.fromTreeUri(mContext, Uri.parse(getParentPath(toPath))).createFile("", uri.getLastPathSegment());
FileOutputStream output = mContext.getContentResolver().openOutputStream(uri);
我得到了```js java.io.IOException:
```js
java.lang.IllegalStateException: Failed to touch /mnt/media_rw/0B07-1910/Testing.tmp: java.io.IOException: Read-only file system
at android.os.Parcel.createException(Parcel.java:2079)
at android.os.Parcel.readException(Parcel.java:2039)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:188)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:140)
at android.content.ContentProviderProxy.call(ContentProviderNative.java:658)
at android.content.ContentResolver.call(ContentResolver.java:2042)
at android.provider.DocumentsContract.createDocument(DocumentsContract.java:1327)
at androidx.documentfile.provider.TreeDocumentFile.createFile(TreeDocumentFile.java:53)
at androidx.documentfile.provider.TreeDocumentFile.createFile(TreeDocumentFile.java:45)
这对我来说没有意义,因为树应该是可写的。
对于它的价值,js Uri 我
从下面js Intent.ACTION_OPEN_DOCUMENT_TREE 看
起来像这样:
content://com.android.externalstorage.documents/tree/0B07-1910%3A
有趣的是,当我使用Uri来创建DocumentFile要浏览的对象时,使用documentFile = js DocumentFile.fromTreeUri(context, uri) ,
则js documentFile.getURI().toString() 如
下所示:
content://com.android.externalstorage.documents/tree/0B07-1910%3A/document/0B07-1910%3A
即,它的末尾附加了一些内容。
然后,我进入应为可写文件夹的位置(如“下载”),并尝试如上所述创建可写文件。“下载”文件夹获取js Uri :
content://com.android.externalstorage.documents/tree/0B07-1910%3A/document/0B07-1910%3ADownload
然后js Uri 我
在js toPath 上
面用于的是:
content://com.android.externalstorage.documents/tree/0B07-1910%3A/document/0B07-1910%3ADownload/Testing.tmp
这会导致前面描述的尝试创建它的问题。
在Storage Access Framework限制下,我实际上尚未找到有关写入任意文件的任何体面信息。
我究竟做错了什么?谢谢。:)
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。