119120121122123124125126127128129
* * @param file */ public boolean canWrite(String file) throws IOException { final FSAccessRights rights = getAccessRights(file); return (rights == null) || rights.canWrite(); } /** * Can the given file be executed to? *