React Native - 从 android 内容 uri 获取文件名

React Native - Get file name from android content uri


我需要从 android 内容 uri 中获取文件名,例如:
内容://com.android.providers.downloads.documents/document/15

我尝试使用 react-native-fs stat 但它 return 错误 "File does not exist"。

我该怎么做?

我没有在 react native 中找到纯粹的解决方案,所以我在 android 中创建了 native 包并在 react native 中创建了模块,所以我可以使用它。
这是 android 代码:

@ReactMethod
    public void getFileNameFromUri(String filepath, Promise promise) {
        Uri uri = Uri.parse(filepath);
        String fileName = "";

        if (uri.getScheme().equals("content")) {
            try {
                Cursor cursor = reactContext.getContentResolver().query(uri, null, null, null, null);

                if (cursor.moveToFirst()) {
                    fileName = cursor.getString(cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME));
                    Log.d("FS", "Real File name: " + fileName);
                }
                cursor.close();
                promise.resolve(fileName);
            } catch (IllegalArgumentException ignored) {
                promise.reject("1", "Can not get cursor");
            }
        } else {
            promise.resolve(fileName);
        }
    }

这是从 android 本机代码模块化反应本机的方法: react-native-modules-android

也许:

let filename = uri.substring(uri.lastIndexOf('/') + 1, uri.length)