public void ChMod(
int permissions,
string path
)Public Sub ChMod (
permissions As Integer,
path As String
)public:
void ChMod(
int permissions,
String^ path
)member ChMod :
permissions : int *
path : string -> unit Modes determine who can read, change or execute a file.
Absolute 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