06-19-2025, 04:49 PM
If you have deleted some "suspicious folders", then:
1. there might be other such folders
2. there could also be some "suspicious" files, if you have a Mac updating your folders...
3. take note of the pattern of those suspicious folders names, then, with a very powerful Linux tool by the name of "find" you can scan (and get rid of) all those nasties is a matter of seconds; like:
find <root folder of your library> -iname "file/folder pattern" -exec rm -rf "{}" \;
If you just want to see how many they are, but take no immediate action, just end the command at "file/folder pattern" and you are free to go.
1. there might be other such folders
2. there could also be some "suspicious" files, if you have a Mac updating your folders...
3. take note of the pattern of those suspicious folders names, then, with a very powerful Linux tool by the name of "find" you can scan (and get rid of) all those nasties is a matter of seconds; like:
find <root folder of your library> -iname "file/folder pattern" -exec rm -rf "{}" \;
If you just want to see how many they are, but take no immediate action, just end the command at "file/folder pattern" and you are free to go.