• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved How to remove zip files in specific folder in my hosting by cron job?

iGraphics

Basic Pleskian
How to remove zip files in specific folder in my hosting by cron job?

I want to remove zip files in specific folder every day at 5:00PM
 
There are many ways to handle this. With PHP, Python, Bash Script - call the script by cron and the script should handle the deletion for you.
 
The most simple solution is probably to run a command like
rm -R -f /<path-to-files>/<filename-pattern>
 
Back
Top