Hi
I would like to remove the '__MACOSX' folders and their contents from a volume and path '/Volumes/dba/Downloads/'
I thought I have to use
find /Volumes/dba/Downloads -name “__MACOSX” -exec rm -Rvf {} \;
I did try
find . /Volumes/dba/Downloads -name “__MACOSX” -exec rm -Rvf {} \;
find /Volumes/dba/Downloads/ -name “__MACOSX” -exec rm -Rvf {} \;
find /Volumes/dba/Downloads/* -name “__MACOSX” -exec rm -Rvf {} \;
but none are working.
This is working but search for unnecessary volumes.
find . -name "__MACOSX"
What do I wrong?
Thanks for your help.