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 <[email protected]> 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 -- [email protected] > To unsubscribe send an email to [email protected] > https://mail.python.org/mailman3/lists/python-ideas.python.org/ > Message archived at > https://mail.python.org/archives/list/[email protected]/message/TFNKPSBCEWTT4IXOQRNT4TFDI66TAHKH/ > Code of Conduct: http://python.org/psf/codeofconduct/ >
_______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/K5KI375Z2VIZ6VITPACYX37YKRWLKKCM/ Code of Conduct: http://python.org/psf/codeofconduct/
