如何在手机SD卡或其他位置搜索文件
我想搜索用户移动设备上具有特定扩展名的文件。
我尝试搜索但找不到任何直接的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
遍历
file[]
找到需要的文件Traverse
file[]
for the required file您可以通过
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.