• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Search for files with JPG extension only

llucas

Basic Pleskian
Server operating system version
Debian 11.11
Plesk version and microupdate number
Plesk Obsidian 18.0.64
Hello, good morning!!

I am trying to clean my server of thousands of .jpg files because I already have them with a .wepp extension and I am having a problem.

How can I search from PLESK, only the files with a .JPG extension and then delete them? Is there a way?.

I am new to PLESK and I can't find a way.

Thanks!!!
Luis
 
Connect via SSH to your server (or use the SSH Terminal extension of Plesk) and then use:

to find/list such files:
Code:
find /var/www/vhosts/ -name "*.JPG"
to delete such files:
Code:
find /var/www/vhosts/ -name "*.JPG" -delete

If you want to search (and delete) also files with .jpg, then you can use the case-insensitive option "-iname" instead of "-name"
 
Back
Top