设置文件权限
我有一个应用程序,显示外部存储中包含的视频文件列表。目前外部存储上的内容(如视频文件)处于只读模式。它们无法被删除。我想删除这些文件;但是,我需要更改权限(从只读更改为读写)。是否可以以编程方式更改文件的权限?
I have an application that shows a list of video files contained on the external storage. Currently the contents on the external storage (like video files) are in read-only mode. They can't be deleted. I want to delete these files; however, I need to change the permission (from read only to read-write).. Is it possible to change the permission of a file programmatically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 setWritable。
编辑:请注意,这只存在于 API 版本 9 及更高版本中。
Try using setWritable.
EDIT: Note that this only exists in API versions 9 and above.
您可以使用
Process
对象运行“chmod”命令。You can run the "chmod" command using the
Process
object.