| I am running HTTrack from the commandline.
I have two text files -- one in which I want to download the files listed and
no others, and one in which I want to download all of the first-level links.
I've got it working currently by splitting up the resulting mirrors into two
separate folders (called 1 and 2) but really I would like them to coexist in a
single folder. When I tried running the following commands without using
folders 1 and 2, the second call to httrack deleted all of the files
downloaded by the first call.
Is there a way to do this?
---- begin code ---
echo Mirroring single-file list
cd %OUTPUTFOLDER%\1
cd
%BatchPath%httrack\httrack.exe --list %BatchPath%SiteLinks\01_SingleFile.txt
--verbose --depth=1 --continue
echo Mirroring one-link-deep list
cd %OUTPUTFOLDER%\2
cd
%BatchPath%httrack\httrack.exe --list
%BatchPath%SiteLinks\02_FilePlusOneLink.txt --verbose --depth=2 --continue
---- end code --- | |