@echo off
set path_in=%1
set filepath=%2
set user_name=%3
set pass_word=%4
echo you will save file in "%path_in%"
for /f "usebackq tokens=1,* delims=" %%i in (`type %filepath%`) do (
echo %%i
call :setsub_path %%i
)
goto :tag1
:setsub_path
set check_in=%1
set sub_path=%2
svn export "%check_in%" "%path_in%\%sub_path%" --username "%user_name%" --password %pass_word% --force
goto :eof
:tag1
echo 下载完毕
pause