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
The current situation is that every time the program is run, a temporary folder will be generated in the path "C:\Users\XXX\AppData\Local\Temp", and the folder name is similar to "tmps_95rxa0". When the program exits, it cannot be automatically cleared, and the console will also warn:
D:\Program Files\Python\Python313\Lib\tempfile.py:936: ResourceWarning: Implicitly cleaning up <TemporaryDirectory 'C:\Users\XXX\AppData\Local\Temp\tmps_95rxa0'>
_warnings.warn(warn_message, ResourceWarning)
This will cause some temporary files to be generated every time it is run, and slowly, it will cause disk space shortage.
How to automatically clear these temporary files and how to remove these warning messages?
The text was updated successfully, but these errors were encountered:
The current situation is that every time the program is run, a temporary folder will be generated in the path "C:\Users\XXX\AppData\Local\Temp", and the folder name is similar to "tmps_95rxa0". When the program exits, it cannot be automatically cleared, and the console will also warn:
D:\Program Files\Python\Python313\Lib\tempfile.py:936: ResourceWarning: Implicitly cleaning up <TemporaryDirectory 'C:\Users\XXX\AppData\Local\Temp\tmps_95rxa0'>
_warnings.warn(warn_message, ResourceWarning)
This will cause some temporary files to be generated every time it is run, and slowly, it will cause disk space shortage.
How to automatically clear these temporary files and how to remove these warning messages?
The text was updated successfully, but these errors were encountered: