Randall_2023 wrote:
You can use Terminal. You will have to navigate to the directory where the zero byte files are then use:
sudo rm filename.ext.
Make sure you are comfortable with using Terminal and the rm command. rm is unforgiving if you make
a mistake.
FYI, I would recommend adding the " -i " option so the user is prompted to confirm the deletion just in case a mistake is made in the command or the path.
sudo rm -i <filename>
Even better would be to begin typing the command making sure to leave at least one space after the "-i ":
sudo rm -i
Then from the Finder, click & drag the file from the Finder onto the open Terminal window so the proper path is automatically filled in which really helps if there are any special characters & spaces in any of the file/folder names, plus it minimizes the risk of selecting the wrong item to delete. Press the "Return" key to execute the command after dropping the item from the Finder onto the Terminal window.