gpt4 book ai didi

python - 如何在python中实现chmod u-w

转载 作者:太空宇宙 更新时间:2023-11-03 13:47:15 26 4
gpt4 key购买 nike

我知道如何使用以下代码实现 chmod u+w:

st = os.stat(dest_file)
os.chmod(dest_file, st.st_mode | stat.S_IWUSR)

但是 u-w 呢?

最佳答案

st = os.stat(dest_file)
os.chmod(dest_file, st.st_mode & ~stat.S_IWUSR)

说明:~ 是按位非运算符,因此与 ~stat.S_IWUSR 的按位与从 st.st_mode 清除标志。

用虚数来说明:

stat.S_IWUSR                    00001000
~stat.S_IWUSR 11110111
s.st_mode 00101001
s.st_mode & ~stat.S_IWUSR 00100001

关于python - 如何在python中实现chmod u-w,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17124199/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com