You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it appears to be impossible to create a temporary directory which isn't removed when the context manager exits. This is because the function equivalents of the standard library's tempfile.mkdtemp and similar do not exist in aiofiles.
I have tried to work around by doing things such as patching the context-managers __aexit__ method, but I have not managed to remove this auto-deletion functionality.