Hi Richard
The exports should be in a /store/exports folder
You may be able to use a standard linux command such as
find /store/exports/* -mtime +2 -exec rm {} \;To remove files older than 2 days. You could then add a cron job so this would run nightly.
This however would need to be tested.
Thanks