如何检测该文件位于SD卡上?

发布于 2024-12-07 02:12:21 字数 256 浏览 0 评论 0原文

是否有任何持久的方法来检测文件位于外部(可拆卸/可拆卸)存储上的某个位置?

当然,有一种方法可以解析文件路径并提取 file:///sdcard 字符串,但正如我们所知,在某些设备上此路径可能不同,例如 file:///mount/ sdcardfile:///sdcard,并不是说某些现代设备支持 USB 主机模式,因此文件可以轻松放置在连接到设备的 U 盘上。

有什么想法吗?

Is there any durable way to detect that is file located somewhere on external (detachable/dismountable) storage?

For sure there's a way to parse file path and extract file:///sdcard string, but as we know on some devices this path can be different, e.g. file:///mount/sdcard or file:///sdcard, not saying that some modern devices support USB host mode, so file easily can be placed on usb stick attached to device.

Any ideas?

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

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

发布评论

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

评论(1

梦里寻她 2024-12-14 02:12:21

通过 Environment.getExternalStorageDirectory 获取外部存储的位置(),然后将其与文件的路径进行比较。确保您拥有绝对路径文件。

Get a location of external storage via Environment.getExternalStorageDirectory() and then compare it to the path of your file. Make sure you have the absolute path to your file.

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