View Single Post
Old 3rd November 2016, 15:49   #8  |  Link
groucho86
Registered User
 
Join Date: Apr 2016
Posts: 85
MS Excel or LibreOffice Calc or Google Spreadsheet. Import the CSV that MediaInfo generated and sort with whatever columns you wish.



Slightly convoluted, but the way I would delete specific files (on a Mac) would be to:
  1. Create list of files to delete ( as txt file)
  2. I use textwrangler to replace line returns ("\r") with null bytes ("\x00")
  3. Batch delete in Terminal (bash):
    cat files_to_delete.txt | sudo xargs -0 -I {} rm -r {}
groucho86 is offline   Reply With Quote