如何检测该文件位于SD卡上?
是否有任何持久的方法来检测文件位于外部(可拆卸/可拆卸)存储上的某个位置?
当然,有一种方法可以解析文件路径并提取 file:///sdcard
字符串,但正如我们所知,在某些设备上此路径可能不同,例如 file:///mount/ sdcard
或 file:///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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
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.