0
PermissionError: [Errno 13] Permission denied:
У меня возникла проблема. Помогите пожалуйста! Я создал генератор паролей с возможностью сохранять и читать сгенерированные пароли, но у меня возникла проблема при открытии фаила для дозаписи или чтения паролей выдаёт:PermissionError: [Errno 13] Permission denied: . Весь Интернет уже обыскал не могу найти или понять как решить данную ошибку! Вот ссылка на код: https://code.sololearn.com/c7t8eOJqvyWo/?ref=app
4 Answers
0
you are trying to read and/or write in a place (directory) where you doesn't have the right to...
0
but how can I change the rights in the directory?
0
it depends of where you run code...
on sololearn, you cannot (but working directory should allow you to read/write temporary files).
locally, it depends on OS running your code... refere to your OS documentation to see how check/set rights on a specific directory...
0
well thank you!