• 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 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"
 
Hi, thank you very much for your reply. How useful!! and how wise.

Thanks for your help, good afternoon.
Luis
 
Be very careful as that would effectively remove those files for all domains in that vhosts directory (including any third party CMS plugins that use JPG files).
 
Back
Top