1

如何使用Sys.chmodR 中的函数通过“其他”切换可读性,即相当于:

chmod o+r myfile
chmod o-r myfile

我特别想不理会模式的其他部分。

4

1 回答 1

1

chmod o+r:

mod <- file.info('tmp.txt')$mode
Sys.chmod('tmp.txt', mod|4)

chmod 或:

mod <- file.info('tmp.txt')$mode
Sys.chmod('tmp.txt', mod&!as.octmode(4))
于 2013-04-06T00:38:48.110 回答