即使拥有所有权限,权限也被拒绝

2024-06-25 22:51:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我试着用

path = 'temp.txt'
# cerca la posizione nel file di tutti i <img
with open(path, "w", encoding='utf-8') as tmp:
    tmp.write(sp)
tmp.close()

文件具有以下权限:

-rwxrwxrwx 1 www-data www-data  647943 Jun 20 13:52 temp.txt

但我还是会

PermissionError: [Errno 13] Permission denied: 'temp.txt'

我怎样才能解决这个问题?我尝试用chmod为文件和文件夹授予777和775权限,但没有任何更改


Tags: 文件pathtxt权限datawwwtemptmp