• 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
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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