os.fchmod(fd, mode)
Change the mode of the file given by fd to the numeric mode. See the docs for chmod()
for possible values of mode. As of Python 3.3, this is equivalent to os.chmod(fd, mode)
.
Availability: Unix.
os.fchmod(fd, mode)
Change the mode of the file given by fd to the numeric mode. See the docs for chmod()
for possible values of mode. As of Python 3.3, this is equivalent to os.chmod(fd, mode)
.
Availability: Unix.
Please login to continue.