import os
import stat
import subprocess
from pathlib import Path
def is_read_only(file: str | os.PathLike) -> bool:
return os.stat(file).st_file_attributes & stat.FILE_ATTRIBUTE_READONLY > 0
test_file = Path('test.txt')
test_file.touch()
subprocess.run(f'attrib -a +r {test_file}', check=True)
print(f'Initial (no archive): Read Only: {is_read_only(test_file)}')
test_file.chmod(stat.S_IWRITE | stat.S_IREAD)
print(f'After chmod(follow_symlinks=True): Read Only: {is_read_only(test_file)}')
test_file.chmod(stat.S_IWRITE | stat.S_IREAD, follow_symlinks=False)
print(f'After chmod(follow_symlinks=False): {is_read_only(test_file)}')
subprocess.run(f'attrib +a +r {test_file}', check=True)
print(f'Initial (archive): Read Only: {is_read_only(test_file)}')
test_file.chmod(stat.S_IWRITE | stat.S_IREAD)
print(f'After chmod(follow_symlinks=True): Read Only: {is_read_only(test_file)}')
test_file.chmod(stat.S_IWRITE | stat.S_IREAD, follow_symlinks=False)
print(f'After chmod(follow_symlinks=False): {is_read_only(test_file)}')
Initial (no archive): Read Only: True
After chmod(follow_symlinks=True): Read Only: True
After chmod(follow_symlinks=False): False
Initial (archive): Read Only: True
After chmod(follow_symlinks=True): Read Only: False
After chmod(follow_symlinks=False): False
Bug report
Bug description:
Expected behavior:
Path.chmod(stat.S_IWRITE | stat.S_IREAD)should clear the read-only attribute regardless of archive bit statePath.chmod(stat.S_IWRITE | stat.S_IREAD)should match os.chmod() behaviorActual behavior:
Path.chmod(stat.S_IWRITE | stat.S_IREAD)silently fails to clear read-onlyPath.chmod(stat.S_IWRITE | stat.S_IREAD, follow_symlinks=False)always worksOutput
CPython versions tested on:
3.14
Operating systems tested on:
Windows
Linked PRs