• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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