I\'m here just to ask something maybe very simple, I\'m working with Files, FileOutputStream and FileInputStream, But I just want to get/se
Android uses the standard Java API for handling files and file permissions. Here's a a page discussing permissions in Java.
Basically all you need to do is getting the FilePermission object of the file, then getting the PermissionCollection from the FilePermission object with the newPermissionCollection() method and then add or remove items to or from that collection.