Mercurial > codedump
view deleteautosave.py @ 130:7b9795a60e59 default tip
add FLAC tracknum utility
dumb piece of shit but it works
| author | Paper <paper@tflc.us> |
|---|---|
| date | Thu, 30 Oct 2025 09:21:00 -0400 |
| parents | 2aa9614cb39a |
| children |
line wrap: on
line source
import os for file in os.listdir("./"): name = os.path.splitext(file)[0][:-16][-8:] if name == "AutoSave": os.remove(file)
