Page 1 of 1

Prompt before blowing away the "Files List"

PostPosted: Wed Apr 03, 2019 7:18 pm
by playmeforafool
Is there any way to make Newsbin pause/throw up some kind of warning or something before it just wipes out the "downloaded files database"? I have my downloaded files on an external encrypted drive and if I start Newsbin without having that drive mounted/un-encrypted, Newsbin just throws away my list of downloaded files. Yes, the actual files are still there on the drive, but now I have no list of them in the "Files List" in Newsbin. :-( I've done this accidentally on more than one occasion, and just did it again today -- which is finally what prompted this feature request...

Re: Prompt before blowing away the "Files List"

PostPosted: Sat Apr 06, 2019 5:46 pm
by Quade
I know what you're asking for. I'll have to think about it. It would have to be optional too.

Re: Prompt before blowing away the "Files List"

PostPosted: Sun Apr 07, 2019 11:09 am
by playmeforafool
After posting this request, I realized that I could create a work-around myself. I created the batch file below and use that to start Newsbin now.

------------------------8<---Cut-Here---8<------------------------
Code: Select all
@ECHO OFF

SET NEWSBINDIR=m:\newsbin

:TRY
IF EXIST %NEWSBINDIR% goto GOOD

:MISSING
CLS
ECHO.
ECHO %NEWSBINDIR% seems to be missing.
ECHO Correct this and then press any key to try starting Newsbin again,
ECHO or press CTRL+C to exit.
ECHO.
PAUSE
GOTO TRY

:GOOD
START "Newsbin" "C:\Program Files\Newsbin\newsbinpro64.exe"

------------------------8<---Cut-Here---8<------------------------

Re: Prompt before blowing away the "Files List"

PostPosted: Tue Apr 09, 2019 12:33 am
by Quade
Good idea.