Remove Files older than x-days If you want to remove old videos you could remove them via bash,this script remove all mp4 Files they are older than 1 Day. find /VIDEOS/ -iname "*.mp4" -mtime +1 -delete; 1 find /VIDEOS/ -iname "*.mp4" -mtime +1 -delete;