Let’s start with the dot_clean error. The syntax you used — dot_clean/Volumes/MB — is missing a space. Terminal interprets that as a file or folder named literally “dot_clean/Volumes/MB,” which doesn’t exist. The correct command should be: dot_clean /Volumes/MB
There is a space after dot_clean and /Volumes/MB.
This command removes hidden “dot” files (.DS_Store, resource forks, etc.) that can interfere with file transfers, especially to non-Mac volumes like your WD Elements (which I’m guessing is formatted as exFAT or NTFS — both of which can be picky about those metadata files). Run that, and it should complete silently if all goes well.
Now, about Secure Empty Trash — My error, sorry about that. Apple actually removed that feature back with OS X El Capitan. The reason, I understand, was that SSDs don’t reliably “secure erase” sectors like spinning drives do, so it gave a false sense of security. It’s not in the Finder anymore. If you're trying to force-delete a stubborn file, though, you can use this in Terminal: sudo rm -rf /Volumes/MB/path/to/folder
However, you can ignore this step since you already cleaned out the folder.
Last thought: since you're saying only one specific folder refuses to copy, try this — compress it first into a ZIP file (right-click > Compress) and then copy that ZIP file to your WD drive. That avoids the metadata conflicts altogether. If that works, it points to something funky in the folder's metadata structure.