• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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