- @ECHO off
cls
:start %1
ECHO.
ECHO 1. Convert Libary Books
ECHO.
ECHO 2. Move books from Downloads to Libary
ECHO.
ECHO 3. Sync Device to Libary
ECHO.
set choice=
set /p choice=What would you like to do today? (Press 1, 2 or 3)...
if not '%choice%'=='' set choice=%choice:~0,1%
if '%choice%'=='1' goto convert
if '%choice%'=='2' goto move
if '%choice%'=='3' goto sync
ECHO "%choice%" is not valid, try again
ECHO.
goto start
:convert
"C:\Program Files (x86)\Adobe\Adobe Digital Editions 2.0\DigitalEditions.exe" "C:\Users\%username%\Downloads\*.acsm"
goto end
:move
move "C:\Users\%username%\Downloads\*.epub" "C:\Users\%username%\My Documents\My Libary"
goto end
:sync
copy "C:\Users\%username%\My Documents\My Libary\*.epub" "j:\database\media"
goto end
:end
Everything else works fine (obviously, nothing but moving and copying). I can get the program to open up just fine but, it won't load the file(s). The reason for this is Barnes & Nobles doesn't make a user friendly program for people that aren't very tech savvy like my mother which this project is for. I tried this program called " Calibre " but, that program is terrible. Any help is greatly appreciated. Thank you for your time.