Remove all NFO's, Images ETC
#1
Is there someway to remove all files except video files? I am trying to clean up a large TV and Movie collection and the person who has been taking care of it has made a real mess, tons of files, images and NFO's for different movies in folders and stuff. It would be easier for me to start over but I dont want to have to manually delete every file in every folder (3.5tbs worth)

thanks
Reply
#2
Use Windows Explorer and search for:
.actors
*.nfo
*.jpg
*.png

... and delete it ...
Reply
#3
Powershell
php:
Get-ChildItem "path\to\tv\movies" -recurse -include *.png,*.jpg,*.nfo | remove-item
Reply

Logout Mark Read Team Forum Stats Members Help
Remove all NFO's, Images ETC0