Android 应用程序文件夹文件系统访问
我的问题与 Android 应用程序中的文件系统访问有关。假设我想抓取另一个应用程序刚刚下载的文件?我可以从我的 ohwn 应用程序中访问其他应用程序文件/文档文件夹吗?我的第一个猜测是不...
感谢您的澄清;-)
你好,pawi
My question is related to filesystem access in Android apps. Suppose I want to grab a file that another app just downloaded? Can I access the other apps file / doc-folder from within my ohwn app? My first guess is no...
Thanks for clarification ;-)
Greets, pawi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果其他应用程序正在将文件下载到 SD 卡,并且您的应用程序有权访问 SD 卡,那么是的,您可以获取该文件。
但是,如果其他应用程序下载到内部文件系统,则将无法获取该文件,除非其他应用程序通过使用权限或意图允许您的应用程序这样做。
If that other app is downloading the file to the sdcard, and your application has permission to access the sdcard, then yes, you can grab the file.
But if the other apps downloading to the internal filesystem, it will not be possible to get the file, unless the other app is allowing your app to do so, by using permissions or intents.