Howto delete all empty temporary files
Due to an error my Drupal files folder ended up with 10.000's of empty temporary files like fileDN4n1t To remove all those files in one command you can use find find . -maxdepth 1 -type f -name 'file*' -size 0 -delete Before you try this you might want to try it without the delete command then you will get a list with the files affected -- Oh if you have the same. The error was in Advanged Aggregation module (advagg) and is fixed after an update