Back to project page ShellAndroid.
The source code is released under:
Apache License
If you think the Android project ShellAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package z.hol.shellandroid; /*w w w . jav a 2s . c o m*/ /** * A interface to implement chmod cmd like "chmod 0777 file" * @author holmes * */ public interface Chmod { /** * like "chmod mode file" * @param file * @param mode * @return */ boolean setChmod(String file, String mode); }