如何在手机SD卡或其他位置搜索文件

发布于 2024-08-31 15:43:49 字数 140 浏览 2 评论 0原文

我想搜索用户移动设备上具有特定扩展名的文件。

我尝试搜索但找不到任何直接的 API。

是否有特定的 API,或者是否有实现相同目的的繁琐方法。 或者有没有一种机制可以调用 linux 调用 find 或类似的东西

谢谢

I want to search for files on the users mobile with specific extensions.

I tried searching but could not find any direct API's.

Is there a specific API's or is there tedious way of achieving the same.
Or is there a mechanism to call linux calls for find or something similar

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

格子衫的從容 2024-09-07 15:43:49
   boolean isSDPresent = Environment.getExternalStorageState()
            .equals(Environment.MEDIA_MOUNTED);

    if (isSDPresent) {
        File file[] = Environment.getExternalStorageDirectory().listFiles();
        if (file != null) {
            for (int i = 0; i < file.length; i++) {
                file[i].getAbsolutePath();
            }
        }
    }

遍历file[]找到需要的文件

   boolean isSDPresent = Environment.getExternalStorageState()
            .equals(Environment.MEDIA_MOUNTED);

    if (isSDPresent) {
        File file[] = Environment.getExternalStorageDirectory().listFiles();
        if (file != null) {
            for (int i = 0; i < file.length; i++) {
                file[i].getAbsolutePath();
            }
        }
    }

Traverse file[] for the required file

秋意浓 2024-09-07 15:43:49

您可以通过 Environment.getExternalStorageDirectory() 找到用户的 SD 卡,然后可以遍历该 SD 卡来查找您需要的内容。

You can find the user's SD card via Environment.getExternalStorageDirectory(), which you can then traverse to find what you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文