Android-文件权限
是否可以为 Android 中的某些文件和文件夹设置文件权限?或者可以用密码打开文件吗?
Is it possible to set file permissions for certain files and folders in Android? Or possibility to open the file on password?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内部存储上的文件(例如,
getFilesDir()
)通常不需要它,并且在经典外部存储(例如,Environment.getExternalStorageDirectory()
)上也不可能。不。
It is usually not needed for files on internal storage (e.g.,
getFilesDir()
) and is not possible on classic external storage (e.g.,Environment.getExternalStorageDirectory()
).No.