NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) v
« Previous 1 … 11 12 13 14 15 … 20 Next »
Imagegrablite .nfo cleanup

 
  • 0 Vote(s) - 0 Average
Imagegrablite .nfo cleanup
kricker
Offline

Member

Posts: 131
Threads: 11
Joined: Jun 2007
#1
2013-11-18, 05:53 PM
I have been trying to write a batch file that could run on my NPVR PC to cleanup .nfo files for shows that have been deleted from within XBMC. So far I have not had any luck. I would like to delete .nfo files for the deleted episodes and not the tvshow.nfo files. Anyone got some clever batch file writing skills that cares to help? Or is there a tool already for this that I am unaware of?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#2
2013-11-18, 10:44 PM
This should help get you going
Code:
@echo off
for /r %%G in ("*.nfo") do (call :check "%%G")
goto :eof
:check
if "%~nx1"="tvshow.nfo" goto :eof
if exist %~pn1.ts goto :eof
@echo %~f1
:eof

Martiin
kricker
Offline

Member

Posts: 131
Threads: 11
Joined: Jun 2007
#3
2013-11-18, 11:07 PM
Thanks. I'll try to look into more this week when I get another free moment.
kricker
Offline

Member

Posts: 131
Threads: 11
Joined: Jun 2007
#4
2013-11-19, 02:59 AM (This post was last modified: 2013-11-19, 03:32 AM by kricker.)
With that nudge I got to this:
Code:
@echo off
for /r %%G in ("*.nfo") do (call :check "%%G")
goto :eof

:check
if "%~nx1"=="tvshow.nfo" goto :eof
if exist "%~pn1.ts" goto :eof
echo "%~pnx1"
del "%~pnx1"

:eof
It works well.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  imageGrabLite update mvallevand 20 13,896 2020-04-04, 02:42 AM
Last Post: jksmurf
  ImageGrabLite "Read Error Object reference not set to an instance of an object." mjccox 6 5,269 2017-04-11, 07:07 AM
Last Post: rinomasaya
  imageGrabLite episode rename (Super Why) sosuke3 4 3,469 2016-11-24, 10:38 PM
Last Post: sosuke3
  ImageGrabLite and the ampersand ttfitz 8 5,043 2016-05-26, 11:56 PM
Last Post: JavaWiz
  Imagegrablite and NCIS Los Angleles/New Orleans robokd 5 4,205 2016-03-02, 02:40 PM
Last Post: mvallevand
  ImageGrabLite Issues bigjess007 11 7,557 2016-01-08, 01:13 PM
Last Post: jksmurf
  ImageGrabLite Setup hootie318 8 5,998 2015-11-28, 11:32 PM
Last Post: pBS
  Imagegrablite renaming of continuation episode jghanisco 5 3,524 2015-11-26, 10:25 PM
Last Post: mvallevand
  ImageGrabLite problem with new Daily Show ttfitz 5 3,272 2015-11-17, 11:48 PM
Last Post: ttfitz
  ImageGrabLite - name change while watching recording liteswap 2 2,916 2015-11-06, 11:29 AM
Last Post: liteswap

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode