Hi Sergio,

The pathlib module includes this feature:
https://docs.python.org/3/library/pathlib.html#pathlib.Path.unlink

Best,

Eelke

On Tue, Dec 29, 2020, 22:12 Serhiy Storchaka <storch...@gmail.com> wrote:

> 29.12.20 22:58, Marco Sulla пише:
> > What about a parameter, false by default, that suppresses the
> > FileNotFoundError exception if true for os.remove()? Something similar
> > to exist_ok for os.makedirs().
>
> You have two options (and it's too much in my opinion):
>
>     try:
>         os.remove(filename)
>     except FileNotFoundError:
>         pass
>
>     with contextlib.suppress(FileNotFoundError):
>         os.remove(filename)
> _______________________________________________
> Python-ideas mailing list -- python-ideas@python.org
> To unsubscribe send an email to python-ideas-le...@python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-ideas@python.org/message/TFNKPSBCEWTT4IXOQRNT4TFDI66TAHKH/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/K5KI375Z2VIZ6VITPACYX37YKRWLKKCM/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to