Changes the access permissions or modes of the specified file or directory.
Modes determine who can read, change or execute a file.
@param permissions the absolute mode of the file/directory @param path the path to the file/directory on the remote server @throws IOException if an IO error occurs or the file if not found @since 0.2.0Absolute modes are octal numbers specifying the complete list of attributes for the files; you specify attributes by OR'ing together these bits. 0400 Individual read 0200 Individual write 0100 Individual execute (or list directory) 0040 Group read 0020 Group write 0010 Group execute 0004 Other read 0002 Other write 0001 Other execute
[user|group|other]=[+|-][read|write|update]For example, to grant all permissions to the group and deny everything to others: group=+write,+read,+update,other=-read The changes are applied to the permissions currently active for this resource. @param resource Description of the Parameter @param modeStr Description of the Parameter @exception XMLDBException Description of the Exception
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|