List of utility methods to do File Attribute
void | setSharedPermissions(File file, boolean setExecutable) set Shared Permissions file.setReadable(true, false);
file.setWritable(true, false);
if (setExecutable) {
file.setExecutable(true, false);
|
int | shellExecute(String strCommand) shell Execute return shellExecute(strCommand, true);
|