It might be a hidden file. You can check by using terminal and going to that private folder and then running the command:
ls -a -l
That will show you all the hidden files (files starting with a . or __ or something like those), along with their file sizes.
And then you can just delete the file using, assuming it is safe to do so:
rm <name of file>
or
sudo rm <name of file> if the first one gives you a permission error.
ls -a -l
That will show you all the hidden files (files starting with a . or __ or something like those), along with their file sizes.
And then you can just delete the file using, assuming it is safe to do so:
rm <name of file>
or
sudo rm <name of file> if the first one gives you a permission error.